예제 #1
0
 public NewVarietyEntry(Plant plant) : base($"<new {plant.Name} variety>", "")
 {
     this.Plant = plant;
 }
예제 #2
0
        public static void ShowWindow(Plant plant, bool isEdited = false, bool create = false)
        {
            InfoPlantWindow win = new InfoPlantWindow(plant, create, isEdited);

            win.ShowAll();
        }