コード例 #1
0
ファイル: Form1.cs プロジェクト: trevorlarson/KairosApp
        private void calendarButton_Click(object sender, EventArgs e)
        {
            //calendarForm calForm = new calendarForm();

            //calForm.Show();

            using (var form = new calendarForm())
            {
                var result = form.ShowDialog();


                this.sermonText  = form.returnText;
                this.sermonTitle = form.sermonTitle;
                this.sermonDate  = form.sermonDate;
            }
            textBox1.Text         = sermonTitle;
            textBox2.Text         = sermonDate;
            this.mainTextBox.Text = this.sermonText;
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: akim110/Kairos2
        private void calendarButton_Click(object sender, EventArgs e)
        {
            calendarForm calForm = new calendarForm();

            calForm.Show();
        }