How to customize the caption alignment in the WinForms Office2007Form?
Customize the caption alignment
The Caption alignment can be specified in the Office2007Form by disabling its property, ApplyAeroTheme. This property enables or disables Aero theme when the Office2007Form is enabled. By disabling the ApplyAeroTheme, the title alignment can be changed by using its property, CaptionAlign. The following code example demonstrates the same.
C#
//Disables Aerotheme. this.ApplyAeroTheme = false; //Sets left alignment of the form title. this.CaptionAlign = HorizontalAlignment.Left; //Sets center alignment of the form title. this.CaptionAlign = HorizontalAlignment.Center; //Sets right alignment of the form title. this.CaptionAlign = HorizontalAlignment.Right;
VB
'Disables Aerotheme. Me.ApplyAeroTheme = False 'Sets left alignment of the form title. Me.CaptionAlign = HorizontalAlignment.Left 'Sets center alignment of the form title. Me.CaptionAlign = HorizontalAlignment.Center 'Set right alignment of the form title. Me.CaptionAlign = HorizontalAlignment.Right

Figure 1: Title aligned to the left side of the window

Figure 2: Title aligned to the center of the window

Figure 3: Title aligned to the right side of the window
Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/Office20073924879112102196285.zip
Reference link: https://help.syncfusion.com/windowsforms/office2007form/customization