Hi San,
Thanks for using Syncfusion product.
You can able to customize the border color by DrawToolbarItem event. Please find the code snippet below,
this.textBoxBarItem1.DrawToolbarItem += TextBoxBarItem1_DrawToolbarItem;
private void TextBoxBarItem1_DrawToolbarItem(object sender, Syncfusion.Windows.Forms.Tools.XPMenus.DrawToolbarItemEventArgs drawItemInfo)
{
drawItemInfo.Graphics.FillRegion(new SolidBrush(Color.Blue), new Region(drawItemInfo.Bounds));
} |
But currently we don’t have support to customize the border style, border width and etc. So we already considered this and logged the feature report for this and you can track from below link,
This feature will be included in any of our upcoming release.
Please cast your vote to make it count. We will prioritize the features every release based on the demands.
If you have any more specification/suggestions to the feature request you can add it as a comment in the portal.
Regards,
Jagadeesan