예제 #1
0
        public MainForm()
        {
            InitializeComponent();
            Form_HabitChecking testForm = new Form_HabitChecking();

            testForm.Show();
        }
예제 #2
0
        private void habitBtn_Click(object sender, EventArgs e)
        {
            Form_HabitChecking testForm = new Form_HabitChecking();

            testForm.Owner = this;
            testForm.Show();
        }