Example #1
0
        void EditCategory(object sender, EventArgs e)
        {
            EnterCategoryPopup editCategoryPopup = new EnterCategoryPopup(EnterCategoryPopup.Mode.Edit, this);

            editCategoryPopup.ShowDialog();
        }
Example #2
0
        void AddCategory(object sender, EventArgs e)
        {
            EnterCategoryPopup addCategoryPopup = new EnterCategoryPopup(EnterCategoryPopup.Mode.Add, this);

            addCategoryPopup.ShowDialog();
        }