Winform引用DEV控件问题
声明 private UTextEdit txtName; UTextEdit是用户控件继承自DevExpress.XtraEditors.TextEdit,dev版本8.3
this.txtName = new UTextEdit();
this.txtName.Properties.BeginInit();
this.txtName.Properties.AppearanceDisabled.BackColor = SystemColors.Control;
this.txtName.Properties.AppearanceDisabled.ForeColor = Color.FromArgb(64, 64, 64);
this.txtName.Properties.AppearanceDisabled.Options.UseBackColor = true;
this.txtName.Properties.AppearanceDisabled.Options.UseForeColor = true;
this.txtName.Properties.BorderStyle = BorderStyles.Office2003;