Example #1
0
        public static void ShowDialog(Character character, ItemSet thenewItemSet, EventHandler callback)
        {
            DG_ItemSetName window = new DG_ItemSetName(character, thenewItemSet);

            if (callback != null)
            {
                window.Closed += callback;
            }
            window.Show();
        }
 public static void ShowDialog(Character character, ItemSet thenewItemSet, EventHandler callback)
 {
     DG_ItemSetName window = new DG_ItemSetName(character, thenewItemSet);
     if (callback != null) window.Closed += callback;
     window.Show();
 }