在 Visual Studio 设计视图上隐藏单选框和复选框名称
我一直在 Visual Studio 2008 中设计控件,您可能已经注意到,当我使用 ASP .NET 的单选按钮和复选框 Web 控件时,它会在设计视图上显示名称,这导致我看到奇怪的预览,因为文本过宽。我想知道 Visual Studio 中是否有任何设置可以关闭此功能?
I have been designing controls in Visual Studio 2008 and as you may have notice when I use radio button and checkbox web controls for ASP .NET it shows the name on design view, this causes me to see an odd preview because the text are unnecessarily wide. I was wondering if there is any settings in visual studio to turn this off?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 Visual Studio 中没有设置。
但这里有一个解决方案,您可以如何做到这一点:
继承 CheckBox 并分配一个新的设计器。
这是一个非常基本的示例(经过测试并且有效):
I don't think there is a setting in Visual Studio.
But here a Solution how you can do it:
Inherit from CheckBox and assign a new Designer.
Here a very basic exsample (tested and it works):