Visual Studio设计器属性窗口与设计器文件

时间:2017-02-13 16:06:16

标签: c# visual-studio-2015 devexpress designer

我的visual studio GUI设计器出了问题。设计器显示我的.designer.cs文件中的不同值。例如,项目simpleButtonPrint,在设计器中我有以下属性:

// 
        // simpleButtonPrint
        // 
        this.simpleButtonPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
        this.simpleButtonPrint.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
        this.simpleButtonPrint.Appearance.Options.UseBackColor = true;
        this.simpleButtonPrint.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
        this.simpleButtonPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButtonPrint.Image")));
        this.simpleButtonPrint.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
        this.simpleButtonPrint.Location = new System.Drawing.Point(1146, 640);
        this.simpleButtonPrint.Margin = new System.Windows.Forms.Padding(15);
        this.simpleButtonPrint.Name = "simpleButtonPrint";
        this.simpleButtonPrint.Size = new System.Drawing.Size(98, 98);
        this.simpleButtonPrint.TabIndex = 9;
        this.simpleButtonPrint.Text = "simpleButton4";
        this.simpleButtonPrint.Click += SimpleButtonPrint_Click;

在我的designer.cs文件中,大小为98,98。在visual studio的属性窗口中,大小为131,121。请参见下面的屏幕截图:

Visual studio properties window

另一台机器上的相同按钮: enter image description here

问题是当我在GUI设计器中进行任何更改时,它会修改我的designer.cs文件,就像在GUI设计器中一样。这应该是我的视觉工作室的问题,因为当我的同事从TFS获得相同版本时,他没有同样的问题。有关如何解决此问题的任何建议吗?

1 个答案:

答案 0 :(得分:-1)

<强>解决方案:

我将缩放模式从Font更改为DPI,现在一切正常。