c# 日历控件的实现
更新时间:2020年12月04日 08:40:20 作者:哈哈哈嗝
这篇文章主要介绍了c# 实现日历的示例代码,帮助大家更好的理解和使用c#,感兴趣的朋友可以了解下
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# 日历的资料请关注脚本之家其它相关文章!
相关文章
C# Windows Forms中实现控件之间的连接线的方法详解
这篇文章主要为大家详细介绍了如何在C# Windows Forms应用程序中实现绘图工具中多个控件之间的连接线功能,文中的示例代码讲解详细,需要的可以参考下2024-02-02解析Silverlight调用WCF/Rest异常的解决方法
本篇文章对Silverlight调用WCF/Rest异常的解决方法进行了详细的分析介绍,需要的朋友参考下2013-05-05
最新评论