Amazing WinForm 🤩 ----- This code can help you replacing the AdjustForm method adding these lines in Initial Form ------ Rectangle rectangle = Screen.PrimaryScreen.WorkingArea; rectangle.Height -= 1; this.MaximizedBounds = rectangle;
A question? The app goes to windows task bar after clicking minimized icon in right-up corner, but when you clicking app icon in windows task bar, the app form will show again , but size is very small, how to restore normal size?
Hi Guys! if your having problem with Aero Snap Window, and Resizing from the given source code. I just put this.FormBorderStyle = FormBorderStyle.Sizable; in the constructor! Hope it helps. public Form1() { InitializeComponent(); CollapseMenu(); this.Padding = new Padding(borderSize); //Border size this.BackColor = Color.FromArgb(0, 191, 99); //Border color this.FormBorderStyle = FormBorderStyle.Sizable; }
Very useful tutorials! There are a ton of typos in the shared code though. Just need to follow the error messages and fix the spacing and remove extra characters
Add this when facing issue on Maximize and Minimize Form private void MainForm_SizeChanged(object sender, EventArgs e) { if (this.WindowState == FormWindowState.Normal) { formSize = this.ClientSize; } }
Same issue as Joris Beuls, and thanks to Fredo Scott for the work around. SC_MINIMIZE doesn't seem to be captured from the click event. I you restore the windows border and fire the standard windows control, the event is triggered. put a break point on "if (wParam == SC_MINIMIZE)" and see. I just don't know why
Awesome! Thanks by your Great Video. I prefer from this form, less explication and more time spend to the main content. And if someone needs more tutorial, either can search after! Subscribed👍
Thanks so much for your time, your videos are very good. Can you do a video developing an AutoUpdater app for our Desktop applications? We need some explication about.
When ı clicked any button, how do we make it switch to another view(like another canvas , for example when ı clicked home buton, the middle part will change, as if you have moved to a different page)
It's really great videos. I do have a question, before you remove the title bar, you managed to have the title bar on the same color of your panel. How did you managed to do that ? Mine stay White no matter what I try to do.
As soon as I open a new form, the checkboxes for the previous form just get back to default, how can I hide the form and not closing the previous form?
Hello, indeed as the rest said this is a nice video and i learned alot. I just noticed in your code to prevent the window from moving after a minimize or maximize action is a bug. When i minimize and reopen it my window is very small. Maximize function works fine. Any idea what is missing?
Hello Sir, I have an issue when I add IconButton form fontAwesomesharp to my form and run it, the form scaling is changed and it appears much smaller than its original size, could you help me with this problem? thanks in adavance
I fixed the size problem of the maximized form with this code in the constructor. Rectangle rect = Screen.FromHandle(this.Handle).WorkingArea; rect.Width= rect.Width- borderSize; rect.Height= rect.Height- borderSize; this.MaximizedBounds = rect;
Good evening, my friend, a pleasure to greet you, your channel is spectacular, your contributions are great, but I would like an afvoe, that you help me with a video customize a TabControl, greetings and thank you very much for your contribution, forgive my bad English
For the WndProc you can save 4 lines of code by using this protected override void WndProc(ref Message m) { if (m.Msg != 0x0083 && m.WParam.ToInt32() != 1) base.WndProc(ref m); } You can short this to a single line.
//Keep form size when it is minimized and restored. Since the form is resized because it takes into account the size of the title bar and borders. if (m.Msg == WM_SYSCOMMAND) { /// /// Quote: /// In WM_SYSCOMMAND messages, the four low - order bits of the wParam parameter /// are used internally by the system.To obtain the correct result when testing /// the value of wParam, an application must combine the value 0xFFF0 with the /// wParam value by using the bitwise AND operator. int wParam = (m.WParam.ToInt32() & 0xFFF0); if (wParam == SC_MINIMIZE) //Before formSize = this.ClientSize; if (wParam == SC_RESTORE)// Restored form(Before) this.Size = formSize; } formSize is with some error = CS0103
Finally; something that is simple and does exactly what I need. No more 300 different types of P/Invoke functions, just a simple WndProc override.
This is the simplest but fully functional code of borderless window I have ever seen! Thank you very much.
Awesome! I've created many UI's, but the way you did it was simply/quickly done and also really nice. Thanks.
Thanks for the helpful videos, I've tried out a lot of your lessons and applied them to my forms.
This was amazing everything you need to know to create borderless UI Application :O
thank you I've learned so much from you
In the new version of font awesome the name of the menu button is navicon instead of bars 😁😁😁
BROOO thankyou so much, this really helped and the tutorial was really easy to use as well :)
So great sir!!
Thank you so much for this. You always guess right what I need to learn from you. Keep it up.
Really i love you
Thank you so much dude.... Helped me a lot
Amazing WinForm 🤩
----- This code can help you replacing the AdjustForm method adding these lines in Initial Form ------
Rectangle rectangle = Screen.PrimaryScreen.WorkingArea;
rectangle.Height -= 1;
this.MaximizedBounds = rectangle;
Thanks for the suggestion, I think it would work, but it won't work on multiple monitors with multiple resolutions.
A question? The app goes to windows task bar after clicking minimized icon in right-up corner, but when you clicking app icon in windows task bar, the app form will show again , but size is very small, how to restore normal size?
Hi Guys! if your having problem with Aero Snap Window, and Resizing from the given source code. I just put this.FormBorderStyle = FormBorderStyle.Sizable; in the constructor! Hope it helps.
public Form1()
{
InitializeComponent();
CollapseMenu();
this.Padding = new Padding(borderSize); //Border size
this.BackColor = Color.FromArgb(0, 191, 99); //Border color
this.FormBorderStyle = FormBorderStyle.Sizable;
}
Excellent . Thanks.
Well, one more reason to learn spanish. (Not just for Barcelona
Very impressive...♥️♥️
Thanks for your video
Very useful tutorials!
There are a ton of typos in the shared code though.
Just need to follow the error messages and fix the spacing and remove extra characters
Add this when facing issue on Maximize and Minimize Form
private void MainForm_SizeChanged(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Normal)
{
formSize = this.ClientSize;
}
}
Hi! I LOVE YOUR VIDEO, thanks so much!
Wonderfull, thank you boss
Same issue as Joris Beuls, and thanks to Fredo Scott for the work around. SC_MINIMIZE doesn't seem to be captured from the click event. I you restore the windows border and fire the standard windows control, the event is triggered. put a break point on "if (wParam == SC_MINIMIZE)" and see. I just don't know why
u r the best
Thanks😘
Eres muy bueno, pensé que estaba en wpf, me sorprende ver lo que se puede hacer con winform :0
nice example thx
thank u teacher!
Awesome! Thanks by your Great Video. I prefer from this form, less explication and more time spend to the main content. And if someone needs more tutorial, either can search after! Subscribed👍
Thanks a lot for tutorials.Please help me to customize close ,maximize and restore buttons.
Awesome tuts! Can you make one tutorial explaining how to make a drag and drop sortable list?
Thanks so much for your time, your videos are very good. Can you do a video developing an AutoUpdater app for our Desktop applications?
We need some explication about.
When ı clicked any button, how do we make it switch to another view(like another canvas , for example when ı clicked home buton, the middle part will change, as if you have moved to a different page)
new sub for you 😃.Thank you for your tutorial.
Welcome! :)
It's really great videos. I do have a question, before you remove the title bar, you managed to have the title bar on the same color of your panel. How did you managed to do that ? Mine stay White no matter what I try to do.
Excelente 👏😀👏😀
For Dll import class ; using System.Runtime.InteropServices;
tnxs for video very helpful
Please how dragging the the form from the custom title bar?
Good day! I've noticed that the loading of my form is extremely slow when I add an iconButton (about 8 seconds). Any idea what I did wrong?
As soon as I open a new form, the checkboxes for the previous form just get back to default, how can I hide the form and not closing the previous form?
Why sidemenü will be opened or closed to faster ? Why there is no anyeffect ? Like in iOs?
in my case button text not whowing when i load the form.plz help me about that
Awsome. Can you do a tutorial how to make a TabControl look modern?
Hello, the resizing area is very small and it's kinda frustating, is there a way to increase this size without increasing the borderSize?
Awesome ! I have a problem, when I click on another application the border reappears.
Did I miss something ? Thank you !!
Can you add link for this icons !
Hello, indeed as the rest said this is a nice video and i learned alot. I just noticed in your code to prevent the window from moving after a minimize or maximize action is a bug. When i minimize and reopen it my window is very small. Maximize function works fine. Any idea what is missing?
Try changing
const int SC_RESTORE = 0xF120;
with
const int SC_RESTORE = 0x09;
Worked for me. Merry christmas :)
Hello Sir, I have an issue when I add IconButton form fontAwesomesharp to my form and run it, the form scaling is changed and it appears much smaller than its original size, could you help me with this problem? thanks in adavance
Hi,
Could you send me screenshots to my email?
Same here, any solution ?
Can you create a winform with smoothly rounded corners.
Can you provide the link to the VS source? Thank you
I couldn't find ''bars" iconchar property. Then I used 'equals'
like @marwenhafnaoui said: "In the new version of font awesome the name of the menu button is navicon instead of bars"
I do hope you also make a video in vb
The resize doesn't work for me, no error, it just doesn't resize, I can use the Aero, but can't resize :(
Is tNice tutorials the free version?
Can you put the project in the Github?
Ok, I'll upload it later.
@@RJCodeAdvanceEN so what is your github?
I fixed the size problem of the maximized form with this code in the constructor.
Rectangle rect = Screen.FromHandle(this.Handle).WorkingArea;
rect.Width= rect.Width- borderSize;
rect.Height= rect.Height- borderSize;
this.MaximizedBounds = rect;
Good evening, my friend, a pleasure to greet you, your channel is spectacular, your contributions are great, but I would like an afvoe, that you help me with a video customize a TabControl, greetings and thank you very much for your contribution, forgive my bad English
Good example!
Upd.
resize event: left to right - flicker, buttons and right border :(
I don't cant fix it :((
Try set the double buffer to true, or I recommend creating a new project.
How to delete the title box but let exit minimaze and maximaze buttons?
Hi, thanks for watching my videos, I think doing that is impossible. But it would be great to do it, I'll investigate.
How to get the source code
The "snapping feature doesn't work for me unfortunately :(. Although Great video!
Set the border to sizable and it will work
Please control your music, I can't pay attention to the video, put something like Lofi or chill beats.
5:05 Code
Look so i bought this and
it isn't the best because the
labels look absolutely trash!
you cant even read the icons or text of labels or pictures~!
For the WndProc you can save 4 lines of code by using this
protected override void WndProc(ref Message m)
{
if (m.Msg != 0x0083 && m.WParam.ToInt32() != 1)
base.WndProc(ref m);
}
You can short this to a single line.
the fontosum.sharp lib is gone? i already search in nuget and didnt find it
Minimize Error Fix
private void BtnMinimize_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
this.Size = formSize;
}
//Keep form size when it is minimized and restored. Since the form is resized because it takes into account the size of the title bar and borders.
if (m.Msg == WM_SYSCOMMAND)
{
///
/// Quote:
/// In WM_SYSCOMMAND messages, the four low - order bits of the wParam parameter
/// are used internally by the system.To obtain the correct result when testing
/// the value of wParam, an application must combine the value 0xFFF0 with the
/// wParam value by using the bitwise AND operator.
int wParam = (m.WParam.ToInt32() & 0xFFF0);
if (wParam == SC_MINIMIZE) //Before
formSize = this.ClientSize;
if (wParam == SC_RESTORE)// Restored form(Before)
this.Size = formSize;
}
formSize is with some error = CS0103