Reputation: 27
I am using Bunifu framework to design UI for C# project. I want to make rounded corners for my Windows form but Bunifu_Classes
does not exsist - how to fix this?
Is there a way to add Bunifu_Classes
?
I have seen this code for rounded corners to Windows form:
Bunifu_Classes.Round.ActivateForm(this, 20);
Upvotes: 1
Views: 4237
Reputation: 116
Go to your Toolkit you will find BunifuElipse Component - drag and drop on your form, select TargetControl [your form ] change the ElipseRadius Property to whichever size you want, recommended size is 5. Also accompany with BunifuDrag Component to make the borderless form draggable. All the best.
Upvotes: 1
Reputation: 1
to round the corners of your form you must use Bunifu.Framework.Lib.Elipse like this: --Bunifu.Framework.Lib.Elipse.Apply(this, 20) after --InitializeComponent() in form constructor.
good Look.
Upvotes: 0