Silverlight 时间选择器当前时间
有没有什么方法可以删除显示 TimePicker 在 Silverlight 中具有焦点的当前时间?
TimePicker :
http://www.silverlight.net/content/ Samples/sl4/toolkitcontrolsamples/run/default.html
类别: 输入>时间选择器
Is there any way to remove the current time that shows when TimePicker have focus in Silverlight ?
TimePicker :
http://www.silverlight.net/content/samples/sl4/toolkitcontrolsamples/run/default.html
Category :
Input > TimePicker
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需重新模板化控件即可删除弹出窗口。
在 Blend 中,将 TimePicker 添加到您的页面。右键单击它并选择“编辑模板->编辑副本...”。在模板中,您将看到一个“TimeUpDown”控件(显示在“对象和时间线”区域中的“RootElement”下方)。使用相同的操作右键单击重新模板(“编辑模板 -> 编辑副本”)。在TimeUpDown控件的模板中,只需删除“TimeHontPopup”控件即可。
编译,运行,选择控件,嘿,很快,不再弹出“当前时间”。
您可以将这些模板放在一个公共位置,以用于模板化要从中删除弹出窗口的所有 TimePicker 控件。
Simply re-template the control to remove the popup.
In Blend, add a TimePicker to your page. Right click it and select "Edit Template->Edit a copy...". In the template you will then see a "TimeUpDown" control (shown below the "RootElement" in the "Objects and Timeline" area). Right click a re-template using the same actions ("Edit Template->Edit a copy"). In the template of the TimeUpDown control, simply delete the "TimeHontPopup" control.
Compile, run, select the control and hey-presto, no more "current time" popup.
You can put these templates in a common location for use templating all the TimePicker controls that you want to remove the popup from.
对我来说最简单的方法就是使用代码。看看我在这里的回复: http://forums.silverlight.net/forums /p/172586/559256.aspx#559256
Easiest way for me was to just use code. Look at my reply here: http://forums.silverlight.net/forums/p/172586/559256.aspx#559256