c# – 我可以阻止Visual Studio自动更改表单设计器代码吗?

我正在使用visual studio并且有一些numericUpDown控件,我已经为(min,max,value和increment)设置了值.代码设计器不断将我的简单十进制值转换为int [].我知道它说“不要用代码编辑器修改这个方法的内容”但是我觉得在这里调整属性真的很有用,我觉得当我改变时我只是“把事情做得很好”:

        this.numericUpDown1.Increment = new decimal(new int[] {
        2,
        0,
        0,
        0});

        this.numericUpDown1.Increment = new decimal(2);

但是,如果我触摸视觉形式设计师的控件,它会改变它.我想也许有一个标志会一直保留,直到我希望它更新.它更多的是为了可读性和导航,但即使它只是让它在一条线上,我会更快乐.

我发现这个(How can I tell Visual Studio to not populate a field in the designer code?)有人试图离开它,但我不确定它是否适用于这种情况.

随意告诉我,我应该克服它,不管它!

最佳答案 您可以创建自己的NumericUpDown用户控件.只需从公共NumeriUpDown继承并在构造函数中设置dessired属性.

public partial class MyUpDownCtrl : NumericUpDown
    {
        public MyUpDownCtrl()
        {
            InitializeComponent();
            this.Increment = new decimal(2);

        }
    }

生成解决方案后,您可以在工具箱中使用新的自定义UpDownControl,只需将其拖动就像普通的numericUpDown一样.

我希望它对你有所帮助,因为我不知道如何让Visual Studio停止自动更改表单设计器代码.也许它根本无法完成.

点赞