我正在开发自定义用户控件。如何防止在设计时界面中修改控件的高度。
答案 0 :(得分:2)
您可以覆盖SetBoundsCore
方法,并在调用基类实现之前通过更改height
值来禁止更改高度。
private const int FixedHeightIWantToKeep = 100;
protected override void SetBoundsCore(
int x,
int y,
int width,
int height,
BoundsSpecified specified)
{
// Fixes height at 100 (or whatever fixed height is set to).
height = this.FixedHeightIWantToKeep;
base.SetBoundsCore(x, y, width, height, specified);
}
答案 1 :(得分:0)
您可以从Control类覆盖Height属性,然后设置BrowsableAttribute以防止它显示在属性窗口中