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

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

问题描述

我有一个自定义控件,已将其放到Visual Studio 2010和c#winforms中的表单上。

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

当我将控件放到表单上时,属性会自动填充在From1.Designer.cs文件中。我想阻止特定属性出现在文件中。我已经将其标记为 [Browsable(false)] ,但这不足以阻止VS干扰我的财产。 VS是否有属性可以忽略该属性?

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)]

相反,如果您希望停止属性具有默认值的序列化,可以执行@HandPassant在注释中指出的操作,并应用 DefaultValueAttribute (仅当该值与您指定的默认值不同时才会序列化)。

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天全站免登陆