コード例 #1
0
ファイル: FormMain.cs プロジェクト: domeops/hookme-wsasendto
        private void newMatchReplace_Click(object sender, EventArgs e)
        {
            FormMatchReplace f = new FormMatchReplace();

            f.StartPosition = FormStartPosition.CenterParent;
            f.ShowDialog();

            if (f.returnedMatch != null)
            {
                Program.data.AddMatchAndReplace(f.returnedMatch);
            }
        }
コード例 #2
0
ファイル: FormMain.cs プロジェクト: CaineQT/hookme
        private void newMatchReplace_Click(object sender, EventArgs e)
        {
            FormMatchReplace f = new FormMatchReplace();
            f.StartPosition = FormStartPosition.CenterParent;
            f.ShowDialog();

            if (f.returnedMatch != null)
                Program.data.AddMatchAndReplace(f.returnedMatch);
        }