Click here to Skip to main content
Licence 
First Posted 15 Jun 2005
Views 39,331
Bookmarked 45 times

BevelLine Control with Designer Selection Rules

By | 15 Jun 2005 | Article
A bevel line control with Visual Studio Designer SelectionRule support.

Sample Image - BevelLineScreenshot.gif

Introduction

I decided to write this bevel line control when I saw that (many moons ago) Visual Studio 2002 didn't have it in its toolbox. Coming from a Visual Basic 6 background, I was disappointed not to have a Shape control (coming in another article) to generate lines for bevels.

Using the code

Here's a sample of all the properties that make a difference:

   bevelLine1.BevelLineWidth = 1;
   bevelLine1.Blend = false;
   bevelLine1.TopLineColor = SystemColors.ControlDark;
   bevelLine1.BottomLineColor = SystemColors.ControlLightLight;
   bevelLine1.Orientation = Orientation.Horizontal;

When using the Form Designer, you can only drag the control width if it is in the horizontal position. To change the control height, set the BevelLineWidth. Using the Blend feature will do a gradient fill rather than a solid one.

Points of Interest

This control stands out from the others because I have implemented a ControlDesigner. This visually guides the developer when selecting the BeveLine control as to whether it can be sized left to right or up and down dependent on the orientation.

This does not work in Visual Studio 2005 Beta 2 as they have modified the selection drawing routine. In previous versions of Visual Studio, it would draw all selection grips around a control at design time but not allow the developer to alter the disabled option. However in Visual Studio 2005 Beta 2, it will not draw the disabled SelectionRules, and if the height of the control is less than 18 it will not be shown!

Using the Designer attribute allows us to reference the designer from the control.

 [Designer(typeof(BevelLineDesigner))]
 public class BevelLine : System.Windows.Forms.Control
 {
    // code...
 }

This is the designer code for the BevelLine. It inherits from ControlDesigner which you have to add the reference System.Design to be able to use in your project.

Overriding the SelectionRules allows you to set selection grips, whether the developer can move it at design time, and whether it's visible. You can actually reference the actual control at design time by using the base.Control property and casting it to your control.

public class BevelLineDesigner : System.Windows.Forms.Design.ControlDesigner
{
  public BevelLineDesigner()
  {
   
  }
  public override SelectionRules SelectionRules
  {
   get
   {
    SelectionRules rules; 
    rules = base.SelectionRules;
    
    // If using VS.net 2005 Beta 2 then comment this code to have
    // selective grip handles on the BevelLine control in the Designer
    if (((BevelLine)base.Control).Orientation == 
          System.Windows.Forms.Orientation.Horizontal)
    {
        rules = SelectionRules.Moveable | SelectionRules.Visible
            | SelectionRules.LeftSizeable | SelectionRules.RightSizeable;
    }
    else
    {
        rules = SelectionRules.Moveable | SelectionRules.Visible
            | SelectionRules.TopSizeable | SelectionRules.BottomSizeable;
    }
   
    return rules;
   }
  }
}

History

  • Uploaded as Visual Studio 2005 Beta 2 solution - 16 June 2005.
  • Uploaded as Visual Studio 2003 solution - 16 June 2005.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

DXNuk

Web Developer

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionText Pinmemberdenson9:01 22 May '07  
GeneralThank you PinmemberMartin Lundberg19:38 23 Nov '05  
GeneralSimpler way Pinmemberov4:33 14 Oct '05  
GeneralRe: Simpler way PinmemberLubos Hasko17:08 30 Oct '05  
GeneralRe: Simpler way Pinmemberov19:00 30 Oct '05  
GeneralRe: Simpler way PinmemberLubos Hasko11:03 31 Oct '05  
GeneralRe: Simpler way Pinmemberov19:47 31 Oct '05  
GeneralRe: Simpler way PinmemberFrederic Sivignon2:17 25 Apr '06  
GeneralSimpler way (update) Pinmembergragramel21:08 3 May '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 16 Jun 2005
Article Copyright 2005 by DXNuk
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid