コード例 #1
0
ファイル: MainWindow.cs プロジェクト: byterj/phoenix
        private void quickLaunchButton_Click(object sender, EventArgs e)
        {
            QuickLaunchDialog dlg = new QuickLaunchDialog();

            dlg.Server  = serverList.SelectedServer;
            dlg.Account = accountList.SelectedAccount;

            dlg.ShowDialog();

            if (dlg.Started)
            {
                Close();
            }
        }
コード例 #2
0
ファイル: MainWindow.cs プロジェクト: greeduomacro/phoenix
        private void quickLaunchButton_Click(object sender, EventArgs e)
        {
            QuickLaunchDialog dlg = new QuickLaunchDialog();
            dlg.Server = serverList.SelectedServer;
            dlg.Account = accountList.SelectedAccount;

            dlg.ShowDialog();

            if (dlg.Started)
            {
                Close();
            }
        }