如何将像 DateTimePicker 这样的控件添加到我使用 Visual Basic 创建的办公室功能区?
我正在创建一个 Microsoft Office 2010 加载项功能区,其中包含一堆控件。我可以添加按钮、文本框和标签等内容。 :-) 但是,我无法添加我需要的一个控件,即 DateTimePicker
。 :-( 是否有一些解决方法或技巧可以让其他控件(如我的功能区上的 DateTimePicker)?
如果有帮助,我正在使用 Visual Basic 2010。
I'm creating an Microsoft Office 2010 add-in ribbon with a bunch of controls on it. I am able to add things like buttons, TextBoxes, and Labels. :-) I am not, however, able to add the one control I need, which is a DateTimePicker
. :-( Is there some workaround or hack to getting other controls like a DateTimePicker on my ribbon?
If it helps any, I'm using Visual Basic 2010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终只是让我的一个按钮打开一个单独的表单,然后可以在其上使用
DateTimePicker
控件。 :-)I wound up just making one of my buttons open up a separate form which then was able to have the
DateTimePicker
control on it. :-)