Example #1
0
        private void b_edit_Click(object sender, EventArgs e)
        {
            FormTheme configForm = new FormTheme(lb_themes.SelectedItem as Theme);

            configForm.ShowDialog();
            RefreshForm();
        }
Example #2
0
        private void b_new_Click(object sender, EventArgs e)
        {
            FormTheme configForm = new FormTheme();

            configForm.ShowDialog();
            RefreshForm();
        }