Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / March 2007

Tip: Looking for answers? Try searching our database.

How to constrain height in ListView like control in designer?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Déjà-vu - 06 Mar 2007 14:57 GMT
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
ClayB - 06 Mar 2007 16:56 GMT
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.
carmen chavez callo - 29 Mar 2007 21:12 GMT
> Hi everybody,
>
[quoted text clipped - 7 lines]
>
> TIA Tilman
carmen chavez callo - 29 Mar 2007 21:13 GMT
> Hi everybody,
>
[quoted text clipped - 7 lines]
>
> TIA Tilman

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.