情况如下。我做了一个自定义按钮控件:
public partial class EButton : Control, IButtonControl
此控件包含一个按钮。我使用getters / setters在设计器中编辑他的属性,如下所示:
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Browsable(true)]
public UIButton Button
{
get
{
return EBtn;
}
set
{
EBtn = value;
}
}
现在,我可以访问设计器中的所有按钮属性。
我的问题是,无论我定义什么,都会被我控件中的默认属性覆盖。
示例: 在我的控制中,按钮的BackColor设置为白色。 在特定的表单中,我希望此按钮为红色,因此我在表单的设计器中将BackColor属性设置为红色。 当我重新加载设计器时,该值已返回White。
我不想为按钮的每个属性设置一个setter。这是一个特定的控件(http://www.janusys.com/controls/),它有很多有用的属性,我想根据每种特定的情况进行调整。
有人知道解决方案吗?
答案 0 :(得分:1)
您应该使用[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public Button MyButtonProperty
{
get
{
return this.button1;
}
set
{
value = this.button1;
}
}
将DesignerSerializationVisibility
与DesignerSerializationVisibility.Content
一起使用,表示该属性由Content组成,Content应该为每个公共生成初始化代码,而不是分配给该属性的对象的隐藏属性。
这是一项独立测试:
using System.ComponentModel;
using System.Windows.Forms;
namespace MyControls
{
public partial class MyUserControl : UserControl
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(3, 15);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
//
// MyUserControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.button1);
this.Name = "MyUserControl";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button button1;
public MyUserControl()
{
InitializeComponent();
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public Button MyButtonProperty
{
get
{
return this.button1;
}
set
{
value = this.button1;
}
}
}
}