Questions tagged [bunifu]

Use this tag if your question concerns usage, implementation, errors, or otherwise, questions, regarding the Bunifu User Interface Framework.

Bunifu is a UI framework for Windows Forms development.

52 questions
2
votes
2 answers

How to change .NET version in Visual Studio 2019 to .NET Framework 4.7.2?

how can I change the .NET to .NET Framework 4.7.2 i am really struggeling since 2 days now. I am doing a WinFormApp and can only use .NET 5 or .NET Core 3.1 but i need .NET Framework 4.7.2 for another Framework. Already installed it through…
michi
  • 284
  • 1
  • 4
  • 21
1
vote
1 answer

Why does Bunifu controls shows error on this.Close()

Goal: I have a simple goal, close the form. Code: This is Bunifu button: private void cancelBtn_Click(object sender, EventArgs e) { this.Close(); } This is normal button: private void normal_Click(object sender, EventArgs e) { …
Eduards
  • 1,734
  • 2
  • 12
  • 37
1
vote
0 answers

Winforms app not compiling in Release mode using Bunifu framework

I've been working on a Winform App that uses Bunifu framework for a month and I just tried to compile in release mode for the first time. I now get errors everywhere in the winform designer: The type or namespace name 'Bunifu' cannot be found (are…
depasa
  • 25
  • 4
1
vote
3 answers

C# the type or namespace Bunifu could not found

When I run C# GUI (Bunifu UI) project in debug mode, project runs fine. When I run the same project in release mode, the compiler shows so many errors, one of them being: Error (cs0246) :the type or namespace name 'Bunifu' could not found (are you…
vaibhav gadekar
  • 190
  • 1
  • 2
  • 14
1
vote
3 answers

How to slide a panel from right to left using bunifuTransition in c#

I have bunifutransition1 that slides my mainpanel from left to right upon clicking showbutton. (It shows the hidden mainpanel.) What I want is, when I click closebutton, the mainpanel will slide from right to left (to hide the mainpanel again). It…
1
vote
1 answer

how to make touchscreen-like mainform C#

I want to make my mainform draggable like smartphone touchscreen. So i put up a bunifugradientpanel in it and dock it in mainform. also put a bunifudragcontrol and set targetcontrol property = 'bunifugradientpanel' and vertical property to 'false'…
1
vote
2 answers

Could not load file or assembly 'Bunifu_UI_v1.5.3' (Exception from HRESULT: 0x80131044)

I've been getting this error in one of my Visual Studio 2017 projects for a while now: 'SploitBase UI©.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'.…
user9311405
0
votes
0 answers

Bunifu Charts format y axis label

I can't see a documentation on bunifu charts that formats the y axis label to decimal data type with dollar sign. Is it possible on bunifu charts because I've seen samples from chart on visual studio?
Mike
  • 1
  • 4
0
votes
0 answers

Problem adding bunifu or metro framework in visual studio 2008

I have a dll of bunifu and metro framework can I add bunifu framwork or metro framework in Visual studio 2008? I'm having an error adding the dll. Anyone encounter this problem?
Gerry
  • 73
  • 6
0
votes
0 answers

Problem with bunifu framework when add another form into my solution

I'm a newbie in C# winforms. I have some problems with bunifu framework when I add another form to my solution. Error is: "The type or namespace name "BunifuVlider" does not exist in the namespace 'Bunifu.UI.Winforms' (are you missing an assembly…
0
votes
0 answers

after converting C# to VB.NET there is an ambiguous error in the namespace

there is an error I have marked in the code below whether this is the cause of converting from c# to vb.net but if I create a new project vb.net with the textbox there is no problem whatsoever. if I run the original C# project then without…
roy
  • 693
  • 2
  • 11
0
votes
0 answers

Bunifu DateTimePicker Type the date

I am using a bunifu framework and using a BunifuDatePicker but this component does now allow me to type the date, just select from popup calendar. Is there any setting to enable enter the date typing?
0
votes
1 answer

How to foreach loop controls for guna or bunifu framework?

How to foreach loop controls for guna or bunifu framework ? I want to check if a TextBox is null or not. private void btn_save_Click(object sender, EventArgs e) { foreach (Control obj in Panel.Controls) { //if…
0
votes
0 answers

Bunifu controls not autoscaling

Bunifu controls don't scale properly on display's with different resolutions. Is scaling not supported on Bunifu controls or is there a setting to fix that?
0
votes
0 answers

How to enable using Bunifu.Framework.UI Visual Studio 2019

I can't understand why using Bunifu is not installed.Framework.UI; and using windowsformscontrolllibrary1; All graphics programs don't work in my Visual Studio 2019 Tell me how to solve this problem for me Mistake 2
Boiko
  • 1
  • 2
1
2 3 4