Bunifu Framework Docs
HomePricingFAQsMy Account
  • Introduction
  • Getting started
    • Requirements
    • Installation
    • Installing for .Net 5 & Above
    • Licensing
      • Managing your licenses
      • Bunifu Licensing CLI
      • Bunifu Device Remover (Deprecated)
  • BUNIFU UI
    • Controls
      • Bunifu Button
      • Bunifu Button (variant)
      • Bunifu Cards
      • Bunifu CheckBox
      • Bunifu Circle Progress
      • Bunifu Datagrid View
      • Bunifu Date Picker
      • Bunifu Drop Down
      • Bunifu Flat Button
      • Bunifu Form Caption Button
      • Bunifu Form Control Box
      • Bunifu Form Resize Icon
      • Bunifu Gradient Panel
      • Bunifu Icon Button
      • Bunifu Image Button (New)
      • Bunifu Image Button (Old)
      • Bunifu IOS Switch (1.5.3)
      • Bunifu Label
      • Bunifu Loader
      • Bunifu Picture Box
      • Bunifu Pages
      • Bunifu Panel
      • Bunifu Progress Bar
      • Bunifu Radial Gauge
      • Bunifu Radio Button
      • Bunifu Rating
      • Bunifu Range
      • Bunifu Separator
      • Bunifu Sliders
      • Bunifu Shadow Panel
      • Bunifu Shapes
      • Bunifu Switch (1.5.3)
      • Bunifu ScrollBars
      • Bunifu Toggle Switch
      • Bunifu Toggle Switch (variant)
      • Bunifu Tile Button
      • Bunifu Thin Button (1.5.3)
      • Bunifu ToolTip
      • Bunifu Textbox
      • Bunifu User Control
    • Components
      • Bunifu Color Transition
      • Bunifu Drag
      • Bunifu Elipse [Deprecated]
      • Bunifu Form Dock
      • Bunifu Form Drag
      • Bunifu Form Resizer
      • Bunifu Snackbar
      • Bunifu Transition
  • BUNIFU CHARTS
    • Introduction
      • Quick Tips
    • Chart Components
      • Bunifu Bar Chart
      • Bunifu Bubble Chart
      • Bunifu Canvas Control
      • Bunifu Doughnut Chart
      • Bunifu Horizontal bar Chart
      • Bunifu Line Chart
      • Bunifu Pie chart
      • Bunifu Polar Chart
      • Bunifu Radar Chart
  • BUNIFU DATAVIZ [Deprecated]
    • Basic Charts [Deprecated]
      • Step Line Chart [Deprecated]
      • Step Area Chart [Deprecated]
      • Spline Chart [Deprecated]
      • Pie Chart [Deprecated]
      • Line Chart [Deprecated]
      • Doughnut Chart [Deprecated]
      • Bar Chart [Deprecated]
      • Area Chart [Deprecated]
      • Column Chart [Deprecated]
    • Advanced Charts [Deprecated]
      • Stacked Column 100 Chart [Deprecated]
      • Stacked Column Chart [Deprecated]
      • Stacked Bar Chart 100 [Deprecated]
      • Stacked Bar Chart [Deprecated]
      • Stacked Area Chart 100 [Deprecated]
      • Stacked Area Chart [Deprecated]
      • Scatter Chart [Deprecated]
      • Range Spline Area Chart [Deprecated]
      • Range Column Chart [Deprecated]
      • Range Bar Chart [Deprecated]
      • Range Area Chart [Deprecated]
      • OHLC Chart [Deprecated]
      • Candle Stick Chart [Deprecated]
      • Bubble Chart [Deprecated]
Powered by GitBook
On this page
  • Adding Bunifu Tile Button at Design Time
  • Properties
  • Color
  • ColorActive
  • Image
  • ImagePosition
  • ImageZoom
  • LabelPosition
  • LabelText

Was this helpful?

  1. BUNIFU UI
  2. Controls

Bunifu Tile Button

Create stylish modern tiled display

PreviousBunifu Toggle Switch (variant)NextBunifu Thin Button (1.5.3)

Last updated 4 years ago

Was this helpful?

Bunifu Tile Button is by default combines both an image and text to create a nice intuitive buttons for your user interface.

Adding Bunifu Tile Button at Design Time

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

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

Properties

Color

The property allows you to set the background color of the button

ColorActive

This property allows you to set the background color of button when clicked

Image

This property allows you to set the to be image placed on our button

ImagePosition

This property allows you to define the position of the image inside the button

ImageZoom

This property allows you to set the zoom of the image

LabelPosition

This propety allows you to set the position of the label inside the button

LabelText

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.