我创建了一个用户控件,其中包含 Show 属性可以设置为 True 或 False,另一个属性 Color 可以更改我的控件的颜色。但我希望当用户在 Windows 应用程序中使用时,用户应该能够更改这些属性。我怎样才能做到这一点 ???
public bool Draw1MinuteTicks
{
get { return this.bDraw1MinuteTicks; }
set { this.bDraw1MinuteTicks = value; }
}
public Color TicksColor
{
get { return this.ticksColor; }
set { this.ticksColor = value; }
}
我有这些属性。