Beispiel #1
0
        private void loadMruButton_Click(object sender, EventArgs e)
        {
            RecentCommands rcnt = new RecentCommands();

            rcnt.FormClosing += new FormClosingEventHandler(RecentCommandClose);
            rcnt.ShowDialog();
        }
Beispiel #2
0
        private void ShowRecentCommands()
        {
            RecentCommands rcnt = new RecentCommands();

            rcnt.FormClosing  += (a, b) => functions.Text = rcnt.SelectedCommand;
            rcnt.StartPosition = FormStartPosition.CenterParent;
            rcnt.ShowDialog(this);
        }
Beispiel #3
0
 private void loadMruButton_Click(object sender, EventArgs e)
 {
     RecentCommands rcnt = new RecentCommands();
     rcnt.FormClosing += new FormClosingEventHandler(RecentCommandClose);
     rcnt.ShowDialog();
 }
Beispiel #4
0
 private void ShowRecentCommands()
 {
     RecentCommands rcnt = new RecentCommands();
     rcnt.FormClosing += (a, b) => functions.Text = rcnt.SelectedCommand;
     rcnt.StartPosition = FormStartPosition.CenterParent;
     rcnt.ShowDialog(this);
 }