2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
ToolBarListBarItemThis can be achieved by handling the Popup event of the ToolBarListBarItem. Access each BarItem of the ToolBarListBarItem and set the CustomTextFont. Please refer the below code snippet which illustrtates this: C# this.toolbarListBarItem1.Popup += new EventHandler(toolbarListBarItem1_Popup); Private void toolbarListBarItem1_Popup(object sender, EventArgs e) { foreach (BarItem b in this.toolbarListBarItem1.Items) b.CustomTextFont = new Font("Times New Roman", 8.25F); } VB AddHandler ToolbarListBarItem1.Popup, AddressOf ToolbarListBarItem1_Popup Private Sub ToolbarListBarItem1_Popup(ByVal sender As Object, ByVal e As System.EventArgs) Handles ToolbarListBarItem1.Popup For Each b As BarItem In Me.ToolbarListBarItem1.Items b.CustomTextFont = New Font("Times New Roman", 8.25F) Next b End Sub
|
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.