使用 Visual Basic 2008 Express 在 vb.net 中为 Windows 窗体创建自定义镶边
如何使用 Visual Basic 2008 Express 在 vb.net 中为 Windows 窗体创建自定义镶边? 我想基本上放弃他们提供的东西并重新开始,有什么办法可以轻松做到这一点吗?
How do you create custom chrome for a windows form in vb.net using Visual Basic 2008 express? I want to basically scrap what they give and start fresh, is there any way to do so easily?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终想通了。 在选择了表单本身的属性窗口中,FormBorderStyle 从“可调整”到“无”将删除所有内置镶边,因此让我自己制作。 可调整大小和移动可能有点困难,因为我必须自己编写代码,但这是剥离镶边的简单方法。
I figured it out eventually. In the properties window with the form itself chosen, FormBorderStyle from "Sizable" to "None" will remove all built in chrome, therefore leaving me to go make my own. Resizability and moving may be a bit tough as I will have to code that myself, but this is an easy way to strip the chrome.