Library tutorials & articles
Collection Controls with Rich Design Time Support
- Introduction
- Starting Off
- Drawing and Layout Logic
- Controlling Serialization
- Adding the Designer
- Adding & Selecting Buttons
- Wrapping Up
Drawing and Layout Logic
We have already created the CalculateLayout function (although it is blank at this point) and are calling it when buttons are added to or removed from the collection. We also need to override OnResize and call it there. For this example control we will display the buttons in one horizontal line, from left to right. We will leave some padding at the sides, then the buttons will take up the rest of the space vertically and make themselves as wide as they are tall.
The CalculateLayout function will also invalidate the control. Although you often redraw without calculating positions, you never calculate positions without redrawing.
VB.NET
Friend Sub CalculateLayout()
Const PADDING As Integer = 3
Dim buttonSize, x, i As Integer 'x is the current horizontal position
Dim button As ColourButton
Dim wrct As Rectangle
x = PADDING
buttonSize = ClientRectangle.Height - (2 * PADDING)
For i = 0 To _buttons.Count - 1
button = _buttons(i)
'Create bounds rectangle for button and increment x
wrct = New Rectangle(x, PADDING, buttonSize, buttonSize)
button.Bounds = wrct
x += buttonSize + PADDING
Next
'Mark the control as invalid so it gets redrawn
Invalidate()
End Sub
C#
internal void CalculateLayout()
{
const int PADDING = 3;
int buttonSize, x, i; // x is the current horizontal position
ColourButton button;
Rectangle wrct;
x = PADDING;
buttonSize = ClientRectangle.Height - (2 * PADDING);
for (i = 0; i < _buttons.Count; i++)
{
button = _buttons[i];
// Create bounds rectangle for button and increment x
wrct = new Rectangle(x, PADDING, buttonSize, buttonSize);
button.Bounds = wrct;
x += buttonSize + PADDING;
}
// Mark the control as invalid so it gets redrawn
Invalidate();
}
Next is the drawing code, which for this example is incredibly simple. We override the OnPaint method to draw the buttons, simply filling their rectangles with a brush we create from their defined colour.
Note that there is another method, OnPaintBackground, which we do not touch. If we were doing anything special with the background of the control, like a different colour, we would. As it is, if we leave it we don't have to worry about painting the background at all. In fact since we're inheriting from UserControl our control already features a BackColor property and even a way to have an image as the background.
VB.NET
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
Dim button As ColourButton
Dim b As Brush
Dim wrct As Rectangle
For Each button In _buttons
'Create brush from button colour
If Not (b Is Nothing) Then b.Dispose()
b = New SolidBrush(button.Colour)
'Fill rectangle with this colour
wrct = button.Bounds
If highlightedButton Is button Then
e.Graphics.FillRectangle(SystemBrushes.Highlight, RectangleF.op_Implicit(wrct))
wrct.Inflate(-3, -3)
End If
e.Graphics.FillRectangle(b, wrct)
Next
End Sub
C#
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
Brush b = null;
Rectangle wrct;
foreach(ColourButton button in _buttons)
{
// Create brush from button colour
if (b != null)
b.Dispose();
b = new SolidBrush(button.Colour);
// Fill rectangle with this colour
wrct = button.Bounds;
if (highlightedButton == button)
{
e.Graphics.FillRectangle(SystemBrushes.Highlight, wrct);
wrct.Inflate(-3, -3);
}
e.Graphics.FillRectangle(b, wrct);
}
}
Note that I've introduced a variable scoped to the control to contain a reference to the button which should have a highlight drawn on it, if any. This will be important later when we deal with the user selecting buttons as design time. At this point, the control actually works. Since I haven't hidden the Buttons property from the propertygrid yet, after adding the control to a form I can go in to the collection editor and add buttons to it. The buttons all show up as white squares, but we're well on our way.
Related articles
Related discussion
-
Problem after strong naming an assembly
by rinkurathor1 (0 replies)
-
Very slow inserts using SqlCommand.ExecuteNonQuery()
by porchelvi (1 replies)
-
VB.net class to connect to sql database
by senol01 (2 replies)
-
how to select item to datagrid from textbox
by chandradev1 (49 replies)
-
Adobe Flex reaches out to .NET developers
by ranganathanmca (1 replies)
Related podcasts
-
CodeCast Episode 4: State of .NET, IE8, ASP.NET MVC, and O'Reilly Media
CodeCast Episode 4: State of .NET, IE8, ASP.NET MVC, and O'Reilly MediaHosts Ken Levy and Markus Egger discuss the new State of .NET events, IE8, ASP.NET MVC, followed by an interview from PDC with two editors from O'Reilly Media. More on ASP.NET MVC can be found at http://asp.net/mvc. Interview...
Related jobs
-
Microsoft .Net Architect
in AMSTERDAM (€50K-€90K per annum) -
Applicatie ontwikkelaar binnen Defensie
in Amsterdam (£50K-£90K per annum) -
Business Analist (Openbaar) Vervoer
in Amsterdam (€50K-€90K per annum) -
Application Engineer (VB, .Net, Java) - Standplaats: Utrecht
in Amsterdam (€50K-€90K per annum)
Events coming up
-
Dec
6
Developing AJAX Web Applications with Castle Monorail
London, United Kingdom
Monorail is the model-view-controller engine of the Castle Project, bringing many of the best ideas of Ruby on Rails to the .NET world. In this talk, David De Florinier and Gojko Adzic show how Monorail makes it easy to develop .NET based AJAX applications, and how to use the Castle Project to build Web 2.0 applications effectively. Come to this session if you are a .NET web developer. Everyone is welcome!
GREAT ARTICLE¡¡¡ thank you very, very much, now i can finish my own control.
I could not save my own custom class object, NOW I CAN.
I've tried to compile the code I've downloaded but at run-time (placed in a form on another project) I don't see the buttons I've created at deign-time..
Is it safe to assume value (of complex type) of a property has instance descriptor converter for every component/control you dropped on design surface.
Regards
Phani
This thread is for discussions of Collection Controls with Rich Design Time Support.