如何创建winxp风格的控件
我试图让我的控件看起来像启用 xp 主题的控件一样酷,例如容器控件中的渐变填充背景和颜色泰晤士支持等,但
我找不到开始的方法。我可以从哪里开始做呢?
我正在尝试在 vb.net 中
编辑:
EnableXpVisualStyles() 我发现它可以启用视觉样式,但没有给我应用视觉泰晤士河。那么为了应用泰晤士河或配色方案我应该做什么?
我还应该结合使用哪些其他命令?因为我已经看到我的应用程序看起来很丑陋,即使应用该命令和其他程序在我的 win2003 服务器中显示出漂亮的外观
I am trying to make my controls look as cool as xp theme enabled controls like gradient fill background in container controls and colour thames support etc
I am not finding a way to start. from where can i start doing it?
I am trying to do it in vb.net
Edited:
EnableXpVisualStyles()
I found it to enable visual styles but didn't give me visual thames to apply. So in order to apply thames or colour schemes what should i do?
What other commands should i use with combination with it? as I have seen my application giving ugly look even applying that command and other program showing nice loook in my win2003 server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在显示表单之前添加以下行:
Application.EnableVisualStyles()
Add the following line before your show your form:
Application.EnableVisualStyles()