Example #1
0
        private void 数据编辑器toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            StringEditor se = new StringEditor();

            se.Owner = this;
            se.ShowDialog();
        }
Example #2
0
        private void DataEditorbtn_Click(object sender, EventArgs e)
        {
            StringEditor se = new StringEditor();

            se.Owner = this;
            se.ShowDialog();
        }
Example #3
0
        private void ucBtnExt3_BtnClick(object sender, EventArgs e)
        {
            StringEditor se = new StringEditor();

            se.Owner = this;
            se.ShowDialog();
        }
Example #4
0
        private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            switch (int.Parse(Properties.Settings.Default.MainPage))
            {
            case 0:
                this.Show();
                this.WindowState   = FormWindowState.Normal;
                this.ShowInTaskbar = true;
                break;

            case 1:
                StringEditor se = new StringEditor();
                se.Owner = this;
                se.Show();
                se.BringToFront();
                break;

            default:
                break;
            }
        }