Inheritance: NotificationForm
示例#1
0
        public static void ShowHouseForm(House h, string command)
        {
            if (h == null)
            {
                return;
            }
            HouseForm f = new HouseForm();

            f.house = h;

            ShowNotification(f, command);
        }
        public static void ShowHouseForm(House h, string command)
        {
            if (h == null) return;
            HouseForm f = new HouseForm();
            f.house = h;

            ShowNotification(f, command);
        }