DateTimePicker在toolStrip控件中添加

Posted chenhaonanfamily

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DateTimePicker在toolStrip控件中添加相关的知识,希望对你有一定的参考价值。

toolStrip控件中要添加日期控件时,首先定义宏控件

  DateTimePicker BeginTime = new DateTimePicker();

然后在界面构造函数中,在目标位置插入控件

1 public JILiangTestDetailUI()
2 {
3     InitializeComponent();
4 
5     ToolStripControlHost begin = new ToolStripControlHost(BeginTime);
6 
7     this.toolStrip1.Items.Insert(13, begin);
8 }

 

其他控件也可以借鉴此方法插入toolStrip控件。

DateTimePicker控件如果要只使用年月,更改控件的Format属性说明格式可编辑,更改CustoMForat属性编辑格式:

1、年Format: custom CustoMForat: yyyy年
2、月 Format: custom CustoMForat: MM月
3、年月:Format: custom CustoMForat: yyyy年MM月



以上是关于DateTimePicker在toolStrip控件中添加的主要内容,如果未能解决你的问题,请参考以下文章

c# toolStrip 中的按钮toolStripButton

窗体中怎么让toolstrip漂浮(停靠已经做出来了)(C#)

toolstrip 设置图片和文字的样式

C# toolstrip和toolstripcontainer 悬浮 停靠 事件

ToolStrip 圆角

ToolStrip和MenuStrip控件簡介及常用屬性(转)