1
duhe
2024-07-29 e486bdcca9a38e52874c231eb1a36731d747578f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace SelM
{
    public partial class FormDate : Form
    {
        public FormDate()
        {
            InitializeComponent();
        }
 
        public bool isSelected = false;
 
        private void monthCalendar1_DateSelected(object sender, DateRangeEventArgs e)
        {
            isSelected = true;
            this.Hide();
        }
 
        private void Form2_Activated(object sender, EventArgs e)
        {
            isSelected = false;
        }
    }
}