void EditCategory(object sender, EventArgs e) { EnterCategoryPopup editCategoryPopup = new EnterCategoryPopup(EnterCategoryPopup.Mode.Edit, this); editCategoryPopup.ShowDialog(); }
void AddCategory(object sender, EventArgs e) { EnterCategoryPopup addCategoryPopup = new EnterCategoryPopup(EnterCategoryPopup.Mode.Add, this); addCategoryPopup.ShowDialog(); }