Hi everybody,

I am developing a ListView / ListBox / TreeView like Control for .NET
CF. I was wondering how to make the designer constrain the height to
multiples of the basic line height - pretty much the way this is done
with a ListBox control when resized in the designer.

(It works without, but it would be a lot easier, if the designer would
allow only usefull heights)

TIA Tilman

Re: How to constrain height in ListView like control in designer? by ClayB

ClayB
Tue Mar 06 10:56:19 CST 2007

One thing you might try is in your derived control, override
OnSizeChanged and restrict the size at that point if you are in design
mode.

protected override void OnSizeChanged(EventArgs e)
{
base.OnSizeChanged(e);
if (this.DesignMode && this.Height > 300)
this.Height = 300;
}

===========================
Clay Burch
Syncfusion, Inc.


Re: How to constrain height in ListView like control in designer? by carmen

carmen
Thu Mar 29 15:12:44 CDT 2007


"Déjà-vu" <d-e-j-a-v-u@web.de> escribió en el mensaje
news:1huk98s.ugo9daewauvsN%d-e-j-a-v-u@web.de...
> Hi everybody,
>
> I am developing a ListView / ListBox / TreeView like Control for .NET
> CF. I was wondering how to make the designer constrain the height to
> multiples of the basic line height - pretty much the way this is done
> with a ListBox control when resized in the designer.
>
> (It works without, but it would be a lot easier, if the designer would
> allow only usefull heights)
>
> TIA Tilman
>



Re: How to constrain height in ListView like control in designer? by carmen

carmen
Thu Mar 29 15:13:48 CDT 2007


"Déjà-vu" <d-e-j-a-v-u@web.de> escribió en el mensaje
news:1huk98s.ugo9daewauvsN%d-e-j-a-v-u@web.de...
> Hi everybody,
>
> I am developing a ListView / ListBox / TreeView like Control for .NET
> CF. I was wondering how to make the designer constrain the height to
> multiples of the basic line height - pretty much the way this is done
> with a ListBox control when resized in the designer.
>
> (It works without, but it would be a lot easier, if the designer would
> allow only usefull heights)
>
> TIA Tilman
>