Esempio n. 1
0
        private void commonzToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fpath = OpenDialogZ();
            if (string.IsNullOrEmpty(fpath))
                return;

            CommonEditor editor = new CommonEditor(fpath);

            editor.Show();
        }
Esempio n. 2
0
        private void commonzToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string fpath = OpenDialogZ();

            if (string.IsNullOrEmpty(fpath))
            {
                return;
            }

            CommonEditor editor = new CommonEditor(fpath);

            editor.Show();
        }