VB.NET - 功能区显示黑色区域
我的 vb.net 程序需要帮助。我使用 DotNetBar 在主窗体顶部添加了一个功能区栏,问题是它显示黑色矩形区域而不是默认的蓝色。仅当我使用 Windows 7 aero 并且未最大化时才会发生这种情况。
有人有什么建议吗?
I need help with my vb.net program. I've added a ribbon bar to the top of my main form using the DotNetBar and the problem is that it shows a black rectangle area instead of the default blue color. This only happens when I am using Windows 7 aero and is not maximized.
Anyone have any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是猜测,但看起来 DotNetBar 应该在没有标准 Form chrome 的情况下使用。尝试将表单的边框样式设置为
None
。另外,请确保您遵循说明并使用 DotNetBar 表单控件:
希望
这有帮助!
Just a guess, but it looks like DotNetBar is meant to be used without the standard Form chrome. Try setting your form's border style to
None
.Also, make sure you're following the directions and using a DotNetBar form control:
http://www.devcomponents.com/kb2/?p=703
Hope this helps!