Version

DrawFocus Method (SplitButtonUIElement)

Renders the focus rect within the button
Syntax
'Declaration
 
Protected Overrides Sub DrawFocus( _
   ByRef drawParams As Infragistics.Win.UIElementDrawParams _
) 
protected override void DrawFocus( 
   ref Infragistics.Win.UIElementDrawParams drawParams
)

Parameters

drawParams
Draw parameters
Example
This sample overrides the virtual method DrawFocus off of UIElement. Here we use ControlPaint to draw a focus rectangle around the specified rect.

Imports Infragistics.Win

 Protected Overrides Sub DrawFocus(ByRef drawParams As UIElementDrawParams)

' Get the rect inside bounding border.
     Dim rect As Rectangle = me.RectInsideBorders 

' Draw the focus rectangle using the ControlPaint class.
     ControlPaint.DrawFocusRectangle(drawParams.Graphics, _ 
	rect, drawParams.AppearanceData.GetForeColor(Me.Enabled), _
	drawParams.AppearanceData.GetBackColor(Me.Enabled))

 End Sub
using Infragistics.Win;
protected override void DrawFocus(ref UIElementDrawParams drawParams)
{

	// Get the rect inside bounding border.
	Rectangle rect = this.RectInsideBorders;

	// Draw the focus rectangle using the ControlPaint class.
	ControlPaint.DrawFocusRectangle(drawParams.Graphics,
										rect,drawParams.AppearanceData.GetForeColor(this.Enabled),
										drawParams.AppearanceData.GetBackColor(this.Enabled));

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also