请问关于c的具体应用场景有哪些?
- 内容介绍
- 文章标签
- 相关推荐
本文共计179个文字,预计阅读时间需要1分钟。
csharppublic partial class MonthCalendarForm : Form{ public MonthCalendarForm() { InitializeComponent(); }
private void MonthCalendarForm_Load(object sender, EventArgs e) { // 隐藏日历控件 monthCalendar1.Hide(); }}
public partial class MonthCalendarForm : Form { public MonthCalendarForm() { InitializeComponent(); } //窗体加载事件 private void MonthCalendarForm_Load(object sender, EventArgs e) { //隐藏日历控件 monthCalendar1.Hide(); } //“选择”按钮的单击事件 private void button1_Click(object sender, EventArgs e) { //显示日历控件 monthCalendar1.Show(); } //日历控件的日期改变事件 private void monthCalendar1_DateSelected(object sender, DateRangeEventArgs e) { //将选择的日期显示在文本框中 textBox1.Text = monthCalendar1.SelectionStart.ToShortDateString(); //隐藏日历控件 monthCalendar1.Hide(); } }
实现效果
以上就是c# 实现日历的详细内容,更多关于c# 日历的资料请关注自由互联其它相关文章!
本文共计179个文字,预计阅读时间需要1分钟。
csharppublic partial class MonthCalendarForm : Form{ public MonthCalendarForm() { InitializeComponent(); }
private void MonthCalendarForm_Load(object sender, EventArgs e) { // 隐藏日历控件 monthCalendar1.Hide(); }}
public partial class MonthCalendarForm : Form { public MonthCalendarForm() { InitializeComponent(); } //窗体加载事件 private void MonthCalendarForm_Load(object sender, EventArgs e) { //隐藏日历控件 monthCalendar1.Hide(); } //“选择”按钮的单击事件 private void button1_Click(object sender, EventArgs e) { //显示日历控件 monthCalendar1.Show(); } //日历控件的日期改变事件 private void monthCalendar1_DateSelected(object sender, DateRangeEventArgs e) { //将选择的日期显示在文本框中 textBox1.Text = monthCalendar1.SelectionStart.ToShortDateString(); //隐藏日历控件 monthCalendar1.Hide(); } }
实现效果
以上就是c# 实现日历的详细内容,更多关于c# 日历的资料请关注自由互联其它相关文章!

