private void OnUiSettings(object sender, EventArgs e)
 {
     BTSettings.ShowBox(this);
 }
Example #2
0
        public static void ShowBox(Window parent)
        {
            BTSettings win = new BTSettings(parent);

            win.ShowDialog();
        }