Bunifu Tile Button
Create stylish modern tiled display
Bunifu Tile Button is by default combines both an image and text to create a nice intuitive buttons for your user interface.
Ensure you have imported Bunifu controls to your toolbox. If not import the required dlls and add them to your toolbox.
After that, locate Bunifu Tile Button bar in the toolbox then drag to your form.

Adding Bunifu Tile Button at Run Time
We will use the form load event as illustrated below
C#
VB.NET
private void Form1_Load(object sender, EventArgs e)
{
var button = new Bunifu.Framework.UI.BunifuTileButton();
this.Controls.Add(button);
}
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim button As New Bunifu.Framework.UI.BunifuTileButton
Controls.Add(button)
End Sub
The property allows you to set the background color of the button
This property allows you to set the background color of button when clicked
This property allows you to set the to be image placed on our button
This property allows you to define the position of the image inside the button
This property allows you to set the zoom of the image
This propety allows you to set the position of the label inside the button
This property allows you to define the text of the label in the button
That's it! Adding Bunifu Tile Button is that simple.
We hope you will find Bunifu Thin Button useful and that it will help you create better user experience for your users.
Should you have feedback or suggestions please send us via chat on the bottom right corner of the screen.
Last modified 3yr ago