Caption alignment in WinForms Office2010Form
10 May 20223 minutes to read
The Form caption can be aligned to the left, right or center by using the CaptionAlign property.
this.CaptionAlign = System.Windows.Forms.HorizontalAlignment.Center;
Me.CaptionAlign = System.Windows.Forms.HorizontalAlignment.Center
Caption font
Office2010Form’s caption Font can be customized through CaptionFont property.
this.CaptionFont = new System.Drawing.Font("Comic Sans MS", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
Me.CaptionFont = New System.Drawing.Font("Comic Sans MS", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CByte((0)))
Caption fore color
The color of the caption text can be customized using the CaptionForeColor property.
// Applies the color to caption text.
this.CaptionForeColor = Color.Pink;
‘Applies the color to caption text.
Me.CaptionForeColor = Color.Pink
Caption bar height
This property helps to customize the CaptionBar height.
this.CaptionBarHeight = 50;
Me. CaptionBarHeight = 50
Help button support
HelpButton property is used to show the HelpButton
in the caption box of the form.
// Displays the HelpButton in the caption box of the Form.
this.HelpButton = true;
‘Displays the HelpButton in the caption box of the Form.
Me.HelpButton = true
Right to left
Right to left support can be enabled using below properties in Office2010Form.
this.RightToLeftLayout = true;
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
Me.RightToLeftLayout = true
Me.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Disabling Office2010Style
Office2010 look and feel can be disabled using DisableOffice2010Style
property.
this.DisableOffice2010Style = true;
Me.DisableOffice2010Style = true