You can use the Font property of the PagingPanelElement to modify the font size of the text as shown here. In order to reduce the empty space within buttons you can adjust the MaxSize property and specify the Width:
foreach (var item inthis.radGridView1.GridViewElement.PagingPanelElement.ButtonsStripElement.Items)
{
CommandBarToggleButton toggleButton = item as CommandBarToggleButton;
if (toggleButton != null)
{
toggleButton.MaxSize = new Size(100, 0);
}
}
Off topic, I noticed that you posted the same questions about customizing paging element in other thread as well. We kindly ask you to use just one thread for a specific problem to contact us. Posting the same questions numerous times slows down our response time because we will need to review and address two or more tickets instead of one. Threads are handled according to license and time of posting. Thank you for your understanding.
Regards,
Nadya | Tech Support Engineer
Progress Telerik
If you want to customize the paging element when paging is enabled in RadGridView you can refer to the following article in our documentation and access the desired buttons and elements in the PagingPanelElement. Hence, you can modify their properties: Paging panel - RadGridView - Telerik UI for WinForms
Please let me know if I can assist you further.
Regards,
Nadya | Tech Support Engineer
Progress Telerik