C#Bunifu-如何在自定义类上使用/调用任何类型的Bunifu控件?

时间:2018-08-21 17:39:43

标签: c# windows bunifu

我创建了一个自定义类。我想在该类上创建一个Bunifu按钮,问题是Visual Studio让我创建的唯一控件类型是默认控件,因为我使用了(System.Windows.Forms)库。 如何在班级中调用Bunifu按钮?也许叫一些图书馆?谢谢! :)

2 个答案:

答案 0 :(得分:2)

所有您需要做的就是通过导航到文件在计算机中的位置来添加对项目中 Bunifu.UI.WinForms.BunifuButton.dll 控件的引用。可以在主窗体的Load事件中编写以下示例代码:

[C#]

            Bunifu.UI.WinForms.BunifuButton.BunifuButton bunifuButton = 
            new BunifuButton.BunifuButton();

            bunifuButton.Location = new System.Drawing.Point(70, 70);
            bunifuButton.ButtonText = "Hello world";

            bunifuButton.Click += (senderObject, eventArgs) => {
                MessageBox.Show("Hello there..."); 
            };

            Controls.Add(bunifuButton);

[VB.NET]

            Dim bunifuButton As New Bunifu.UI.WinForms.BunifuButton.BunifuButton()

            bunifuButton.Location = new System.Drawing.Point(70, 70)
            bunifuButton.ButtonText = "Hello world"

            AddHandler bunifuButton.Click, Sub(senderObject, eventArgs)
                MsgBox("Hello there...")
            End Sub

            Controls.Add(bunifuButton)

希望这会有所帮助!

答案 1 :(得分:0)

您必须参考Bunifu框架,可以从其网站下载

https://bunifuframework.com/products/bunifu-ui-winforms/

Bunifu_UI_v1.5x.dll添加到您的项目 转到toolbox--> Choose Items --> Browse  选择dll文件,您将拥有所有工具,包括Bunifu Button。