Bunifu Framework Docs
Home
Pricing
FAQs
My Account
Search…
Introduction
Getting started
Requirements
Installation
Licensing
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 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 CHARTS
Introduction
Chart Components
BUNIFU DATAVIZ [Deprecated]
Basic Charts [Deprecated]
Advanced Charts [Deprecated]
Powered By
GitBook
Bunifu Image Button (Old)
Create better button user experience with icons and images
Bunifu image button works like a normal button the only difference is that you can customize and add icons or images within the button.
Adding Bunifu Image Button at Design Time
Simply locate image button in your toolbox and drag it to your form
Adding Bunifu Image Button at Run Time
To add Bunifu Image Button at run time we will simply use the Load event handler in order to add a Bunifu Image Button on our form:
Code
C#
VB.NET
1
private void Form1_Load(object sender, EventArgs e)
2
{
3
var button = new Bunifu.Framework.UI.BunifuImageButton();
4
this.Controls.Add(button);
5
6
}
Copied!
1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
2
3
Dim button As New Bunifu.Framework.UI.BunifuImageButton
4
Controls.Add(button)
5
6
End Sub
Copied!
​
Properties
Image
Under properties section simply click Choose Image… to set image at design time
Zoom
This property sets the
zoom-level
of the image. The effect is that the image will zoom on mouse hover at run time.
That's it!
We hope you will enjoy using Bunifu Image Button 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.
Previous
Bunifu Image Button (New)
Next
Bunifu IOS Switch (1.5.3)
Last modified
2yr ago
Copy link
Contents
Adding Bunifu Image Button at Design Time
Adding Bunifu Image Button at Run Time
Code
Properties
Image
Zoom