using System.Windows; using System.Windows.Controls; using GameRes.Formats.Properties; namespace GameRes.Formats.GUI { /// /// Interaction logic for WidgetYPF.xaml /// public partial class WidgetYPF : Grid { public WidgetYPF () { InitializeComponent(); uint key = Settings.Default.YPFKey; if (key < 0x100) this.Passkey.Text = key.ToString(); else this.Passkey.Text = null; } public uint? GetKey () { uint key; if (uint.TryParse (this.Passkey.Text, out key) && key < 0x100) return key; else return null; } } }