阻止 VS 将属性值放入 .Designer.cs 文件中 [英] Stop VS from putting a property value in the .Designer.cs file

查看:37
本文介绍了阻止 VS 将属性值放入 .Designer.cs 文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have a custom control which I have dropped onto a form in Visual Studio 2010 and c# winforms.

When I drop the control on the form the properties are automatically populated in the From1.Designer.cs file. I want to stop a specific property from appearing in the file. I have already marked it as [Browsable(false)] but this is not enough to stop VS from interfering with my property. Is there an attribute to the VS to ignore the property?

解决方案

Use this if you want that property to be serialized:

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]

Instead if you want to stop the property to be serialized if it has its default value you can do what @HandPassant pointed out in the comment and apply the DefaultValueAttribute (it'll be serialized only if the value is different from the default you specified).

这篇关于阻止 VS 将属性值放入 .Designer.cs 文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆