A simple but effective solution!, thank you so much!.
@CUiAcademy Жыл бұрын
Glad it helped!
@burgerlx88716 жыл бұрын
Just what i was looking for! Thank you!
@katerose61614 жыл бұрын
Thank You for the excellent solution. I'm going to use this method in my project! Thanks a lot again
@gillianfowler18924 жыл бұрын
Thank you so much for this! Question, how do you code it when you want to have multiple dropdown panels underneath each other that close when you open a new one?
@twoocean8012 Жыл бұрын
Did you find a solution to this?
@tgk34457 ай бұрын
Very good! Thanks for your help man!
@jaimeelipascua85282 жыл бұрын
thanks for this man,..keep it up..
@abeyuassefa78615 ай бұрын
it works for me, thank you a lot brother.
@ShoaibKhan-rg6uz6 жыл бұрын
Outstanding bro keep it up
@Tresordiwata1005 жыл бұрын
Thanks bro. You have helped much
@justsomekiwiguy29302 жыл бұрын
Just what I needed. Thanks!
@CSharpCodeAcademy6 жыл бұрын
what a mind bro, amazing, keep it up Salaar HusYn
@jojocheng2896 жыл бұрын
Nice example. Thanks
@shayanali25986 жыл бұрын
ma sha Allah zabardast bro
@JuliaFile11 ай бұрын
thanks for the tutorial. this is very useful and works. but when the menu goes down. the buttons at the bottom are hidden, covered by the drop menu. how do you solve it?
@manjeetnandal14 жыл бұрын
Many usefull. Great thanks!
@TXNNGVGX2 ай бұрын
It's a great video, but how do I make the selected button take the place of the main one?
6 жыл бұрын
Excelente solución en C#. ;-)
@Kira75422 жыл бұрын
Thanks, this really helped :-)
@anandranga34286 жыл бұрын
Superb bro
@christolb595 жыл бұрын
Brief and clear, thanks a lot, and really, the sound is also good, let me know the name of music :)
@rosemaryroopnarine9443 Жыл бұрын
Just what I was looking for, but if each button represents a form how do I get the text of the form name to be seen.
@AMIRKHAN-dm2fm6 жыл бұрын
Very Nice
@hamzakhan-go3ct6 жыл бұрын
what is isCollapsed and i have done each nd everything same except that arrow sign so where i should write timer1.start(); plx rep thanks
@CUiAcademy6 жыл бұрын
Hi Hamza,... isCollapsed is a bool variable which we've declared earlier, It will become true when the panel is collapsed..
@457Deniz4576 жыл бұрын
uhhh nice, will try that one out :D
@CowLevel0076 жыл бұрын
That was so cool!
@jorgeluna30965 жыл бұрын
Thanks, but how can i do for 2 o more panels?
@aerithmint80415 жыл бұрын
Thank you for this video, help a lot ♥️ but one more thing, how can I display another user control when clicking the button in the drop down panel? Pls reply, I need ur help😭 - it's okay, already can XD
@CUiAcademy5 жыл бұрын
during form designing (before reducing the size of Sub Panel), just code to display user control on your form... :) :) please let me know if you have any query... thanks for watching my videos... :)
@aerithmint80415 жыл бұрын
@@CUiAcademy Thank you 🥰
@sararana3195 жыл бұрын
my dropdown panel is overlapping on the other button what should i do?
@CUiAcademy5 жыл бұрын
Hi Sara Rana. Please use Flowlayout Panel for your Container (Main Panel). I hope this will work for you.. :)
@angelaochoa75945 жыл бұрын
@@CUiAcademy Is there a way to make the other buttons drop down on a regular Panel?
@Shashi24ful6 жыл бұрын
no Download link on the description 😞
@gokhanzaric39036 жыл бұрын
Thank You Brother.
@nove13984 жыл бұрын
What is the best way to open a new form and close the current?
@erlindkadriu45474 жыл бұрын
Can I use 2 timers in one form? I am actually using but i have a crash I don't know why...Can you help me ? By the way thanks a lot for this solution!
@CUiAcademy4 жыл бұрын
Hi Erlind, Please explain your problem by writing an email to info@csharpui.com. I'll try my best to solve your problem.. :)
@erlindkadriu45474 жыл бұрын
@@CUiAcademy I fixed the problem, it was crashing between timers :'D thanks for caring...
@sumitrajput2404 Жыл бұрын
sir agr sabhi batton me, button 5 jaisa krna ho to kya kre
@vannapro37336 жыл бұрын
Could you make video about form responsive with screen.
@arczhar12046 жыл бұрын
Thanks you bro!
@蔡尚宏-e6u6 жыл бұрын
Why the button10.11.12 won't cover the DropDown Panel?They will move when the Panel Drop.Want to know~Thanks for help.
@falaksyed20193 жыл бұрын
Thank you so so much
@santhoshreddy91615 жыл бұрын
Thanks a lot
@zerosandones75473 жыл бұрын
how to make this dropdown dynamic? add a dropdown button every time a user adds an item in the database.
@simpleman71714 жыл бұрын
dude can u explain about ur code i wanna get it ty so much
@pavankulkarni90806 жыл бұрын
Error at statement - panelDropDown.Height += 10; Error msg - Invalid expression term and panelDropdown does not exist in the current context
@CUiAcademy6 жыл бұрын
panelDropDown is the name of the panel which contains your button.... just rename that panel or replace panelDropDown with its name,,, :)
@pavankulkarni90806 жыл бұрын
Thank you so much, finally I executed program. once again thank you so much for your reply c# UI academy
@Thepostroun4 жыл бұрын
thank you very much that helps L))
@SamSung-bc4th5 жыл бұрын
It works. Fast time click the button drop down. but how the panel is closed automatically when i click another button. #SaLaaR_HuSceyN
@CUiAcademy5 жыл бұрын
simple.. Just check the height of panel dropdown and if its width is greater then call the on click event of ButtonCollapse like, if(panelDropDown.Height < 0) { ButtonCollapse.OnClick(sender,e); } it will close the drop down panel if it is already opened..
@CUiAcademy5 жыл бұрын
Change the 0 inside the if condition with the minimum height which you set for the panel dropdown. :) I hope it will work for you.. :)
what if I want a dropdown panel inside a dropdown panel?
@dhokhumiya81736 жыл бұрын
bro my problem shows a collapsed arrow image add plz help me
@codex44834 жыл бұрын
what if i have to add more than 100 buttons,,please help
@debashishbasu15055 жыл бұрын
How to do this same thins in visual basic?? Please help me
@debashishbasu15055 жыл бұрын
Please help me
@tiagorodrigues66895 жыл бұрын
can you send me the link of your project pls!! nice video bro!
@CUiAcademy5 жыл бұрын
Please download the source code from this link.. github.com/SaLaaRHuSyN/DropDownPanel
@makjacky22803 жыл бұрын
amazing!!!
@muhammadadrees82576 жыл бұрын
how the panel is closed automatically when opening any other panel.. Plz Help
@ErkanOkman6 жыл бұрын
👍👏
@TheOussamaess19585 жыл бұрын
I like It
@n0stal6ic24 жыл бұрын
the menu wont drop down at all for me
@codingislife63876 жыл бұрын
So Cool ...----------> Thanks
@roeljohnrebosa17676 жыл бұрын
Thanks
@somedudeonyoutubefrfr5 жыл бұрын
Im still asking myself: why do you refresh your desktop at every start of an video 😅
@CUiAcademy5 жыл бұрын
The reason behind this is very simple, many viewers just ask about, which version of visual studio that I am using in this video, because some techniques don't work in older versions... So I start my every video from scratch...
@somedudeonyoutubefrfr5 жыл бұрын
@@CUiAcademy Ok ^^ Thank you for your fast answer :D Please continue with this content