Example #1
0
        private void menuItemViewAllPastebins_Click(object sender, EventArgs e)
        {
            if (SAI_Editor_Manager.FormState != FormState.FormStateMain)
                return;

            using (ViewAllPastebinsForm viewAllPastebinsForm = new ViewAllPastebinsForm())
                viewAllPastebinsForm.ShowDialog(this);
        }
Example #2
0
        private void buttonViewPastebins_Click(object sender, EventArgs e)
        {
            Close();

            using (ViewAllPastebinsForm viewAllPastebinsForm = new ViewAllPastebinsForm())
                viewAllPastebinsForm.ShowDialog(this);
        }
Example #3
0
 private void buttonViewPastebins_Click(object sender, EventArgs e)
 {
     using (ViewAllPastebinsForm viewAllPastebinsForm = new ViewAllPastebinsForm())
         viewAllPastebinsForm.ShowDialog(this);
 }