on right side, I use panel to load another form and it always blink or flickering every time when sidebar collapse or expand. do you have any tip to fix it?
When im doing this part 2:50 my code just dosnt work. The panels get all bugged and dissapear, even if I click ctrl + z they dont show again and my programm breaks...
It would also be informative to learn how to get rid of flickering when using the timer, i.e. when you set the timer interval from 1 to 100 and have a BackColor gradient when you press the button, the shape flickers.
@@vladbalandin2630 I never tried using panel with gradient color before, thanks for the suggestion i will try to use gradient color and try to fix flickering issue with timer control
@@coding_ideas If it is still relevant, I ask you to consider the possibility of implementing a submenu not using DropDown, but by dynamically creating a panel with buttons, with a visibility interval of 2-5 seconds, by also implementing a timer through the component. that you end up with shortcuts when navigating around the workspace, i.e. when you click on the menu, a childForm will open in the workspace and when you select a component from the submenu, it will send it to the specified directory (this is if you implement the TabControl component in childForm)
Use Double Buffering. To enable double buffering in Windows Forms in Visual Studio, follow these steps: 1. Open your Windows Forms project in Visual Studio. 2. Open the form that you want to enable double buffering on. 3. Right-click on the form and select Properties from the context menu. 4. In the Properties pane, scroll down to the Behavior section. 5. Set the DoubleBuffered property to True. 6. Save and close the form. This will enable double buffering on your Windows Form, which can improve performance and reduce flickering when there are multiple controls or graphics being rendered on the form.
Hello, I tried this but when I put a lot of control panel, and collapse the menu it will looks like its lagging, the collapse time is so slow even I set it the timer for 10. When I remove the control panel it will back to smooth. I hope you can help me, thank you so much.
Jay-Ann Oliveros and wasim Alwisi What you can do is the following... Just below "bool sidebarExpand;' place the following code. It should reduce or completely stop the problem protected override CreateParams CreateParams { get { CreateParams cp = base.CreateParams; cp.ExStyle |= 0x02000000; // Turn on WS_EX_COMPOSITED return cp; } } The problem you are facing is called "flickering" and it happens when too much stuff gets "painted" onto your panels. It is not the kind of flicker that double-buffering can solve. Nor BeginUpdate or SuspendLayout. You've got too many controls, the BackgroundImage can make it a lot worse. It starts when the UserControl paints itself. It draws the BackgroundImage, leaving holes where the child control windows go. Each child control then gets a message to paint itself, they'll fill in the hole with their window content. When you have a lot of controls, those holes are visible to the user for a while. They are normally white, contrasting badly with the BackgroundImage when it is dark. Or they can be black if the form has its Opacity or Transparency Key property set, contrasting badly with just about anything. This is a pretty fundamental limitation of Windows Forms, it is stuck with the way Windows renders windows. Please respond to this comment if it fixed the problem.
you know the tutorial finna be crazy when they ain't activate they windows
on right side, I use panel to load another form and it always blink or flickering every time when sidebar collapse or expand. do you have any tip to fix it?
in 5:44 what is written after "sidebar.Width"?
Ajoyib wonderful💥💥💥💥
When im doing this part 2:50 my code just dosnt work. The panels get all bugged and dissapear, even if I click ctrl + z they dont show again and my programm breaks...
i got errors cannot implicitly convert type int to bool and non invocable member Size.Width cannot be used like a method. any fixes?
same error here
i thought i was the only one. Have you guys fixed it yet?
Can I Please Get The Source Code!
As always, you are on top, thank you!
Thank you so much 🙂
It would also be informative to learn how to get rid of flickering when using the timer, i.e. when you set the timer interval from 1 to 100 and have a BackColor gradient when you press the button, the shape flickers.
@@vladbalandin2630 I never tried using panel with gradient color before, thanks for the suggestion i will try to use gradient color and try to fix flickering issue with timer control
@@coding_ideas I will look forward to it!
@@coding_ideas If it is still relevant, I ask you to consider the possibility of implementing a submenu not using DropDown, but by dynamically creating a panel with buttons, with a visibility interval of 2-5 seconds, by also implementing a timer through the component. that you end up with shortcuts when navigating around the workspace, i.e. when you click on the menu, a childForm will open in the workspace and when you select a component from the submenu, it will send it to the specified directory (this is if you implement the TabControl component in childForm)
That's very helpful! Thank you!
High Quality Content, keep Going
Thank you
Thank you very much for your video, which has made me benefit a lot. Can you share the material of the icon?
hello, thanks for watching . i use this tool apps.microsoft.com/store/detail/pichon-free-icons/9NK8T1KSHFFR?hl=en-ph&gl=PH
Hello. Thank you very much and look forward to your more wonderful videos.
is there a way to avoid the « flickering » on the right when we expand the sidebar ?
Use Double Buffering.
To enable double buffering in Windows Forms in Visual Studio, follow these steps:
1. Open your Windows Forms project in Visual Studio.
2. Open the form that you want to enable double buffering on.
3. Right-click on the form and select Properties from the context menu.
4. In the Properties pane, scroll down to the Behavior section.
5. Set the DoubleBuffered property to True.
6. Save and close the form.
This will enable double buffering on your Windows Form, which can improve performance and reduce flickering when there are multiple controls or graphics being rendered on the form.
Pure digital gold.
Thanks.
You're welcome 😊
100% Genius Jeov whoo hoo brodie!
Good work man
Grabe ka power bay support here
Thank you master 😊😊
Hello, I tried this but when I put a lot of control panel, and collapse the menu it will looks like its lagging, the collapse time is so slow even I set it the timer for 10. When I remove the control panel it will back to smooth. I hope you can help me, thank you so much.
Jay-Ann Oliveros and wasim Alwisi
What you can do is the following...
Just below "bool sidebarExpand;' place the following code.
It should reduce or completely stop the problem
protected override CreateParams CreateParams {
get {
CreateParams cp = base.CreateParams;
cp.ExStyle |= 0x02000000; // Turn on WS_EX_COMPOSITED
return cp;
}
}
The problem you are facing is called "flickering" and it happens when too much stuff gets "painted" onto your panels.
It is not the kind of flicker that double-buffering can solve. Nor BeginUpdate or SuspendLayout. You've got too many controls, the BackgroundImage can make it a lot worse.
It starts when the UserControl paints itself. It draws the BackgroundImage, leaving holes where the child control windows go. Each child control then gets a message to paint itself, they'll fill in the hole with their window content. When you have a lot of controls, those holes are visible to the user for a while. They are normally white, contrasting badly with the BackgroundImage when it is dark. Or they can be black if the form has its Opacity or Transparency Key property set, contrasting badly with just about anything.
This is a pretty fundamental limitation of Windows Forms, it is stuck with the way Windows renders windows.
Please respond to this comment if it fixed the problem.
@@ireapzz_industries5407 FIXED IT THANKS BRO
Can you add method to change color of border Winform?
Hi, can i get the Home button image resolution in px? Thank you
Never mind, i found out, its 26x26 rigth?
Очень круто!!! Пожалуйста продолжай!!!)
хрень собачья
Wonderful... Thanks
Does it work in 2015/2016 versions?
yes it should work in different versions
@@coding_ideas thank you
i run and it has so many errors like ; and ) expected
Why the first click on menu button doesn't work to collapse the menu..
But it works from the second click?
Try initializing the sidebarExpand bool as "true".
@@2004Timber I had same issue, Thank you so much your suggestion fixed this error.
Keep working 💪
code didn't working
Can I get the whole project ? please answer me 😞😞😞😞😞😞
Can you pls give us the icons your using in the vid
hello, thanks for watching . i use this tool apps.microsoft.com/store/detail/pichon-free-icons/9NK8T1KSHFFR?hl=en-ph&gl=PH
@@coding_ideas tysm I was looking for icons but couldn’t find any
anong version ng VS gamit mo idol salamat
VS2019 :)
Song Name?
Can I get the whole project
Hello, I don't have the source code anymore, but I will try to recreate it with source code.
@@coding_ideas why my " bool sidebarExpand;" , what that stand for??
how to make it when its full scren stretch out with it
Use dock or anchor
Can anyone help me? stuck at 13:18 homeCollapse.Height is error
Could you perhaps elaborate more on the problem you are having?
@@ireapzz_industries5407 It's all good now, I mange to find a solution for it.
wheres source?
Why it is not working for me
When my sub menu move, it does push another menu away. Can you help me
hello, did you use flowlayout panel ?
@@coding_ideas So i have to use flowlayout panel for container, right? Thank you !
@@coding_ideas could you give me a download link to what you made ?
cool
Thanks Bro. ❤️
HOW YOU ADD BUTTON INSIDE PANEL IN 1:36
Just drag it inside the panel :) .
@@coding_ideas I`M USE VS 2022 I CANT MAKE IT -_-
@@coding_ideas CAN YOU SHARE THIS PROJECT ?
@@Hmadaashraf i will check if i still have it. 😅
@@coding_ideas ihope to found it
😍😍😍🤩
Useful thanks
Please Post The Source Code
Agreed, need to read with good quality
windows forms is dead, use wpf
windows forms is 2002, wpf 2006... more or less..
@@carboniits9719 lol no
@@edwardfreedom bro i use windows forms and make it look like WPF