C#/ Modern Flat UI + Font Awesome Icons, Multicolor, Highlight button, WinForm

  Рет қаралды 572,564

RJ Code Advance EN

RJ Code Advance EN

Күн бұрын

Пікірлер: 232
@RJCodeAdvanceEN
@RJCodeAdvanceEN 3 жыл бұрын
🎯 NEW! Final Modern UI - Aero Snap Window, Resizing, Borderless, Sliding Menu - C#, WinForms : kzbin.info/www/bejne/hGbSi6GMaMh0bJY
@FireworkPlayground-p1h
@FireworkPlayground-p1h 25 күн бұрын
How can I get in touch with you? I did send you a msg on insta Its - GooseNeckGuy
@FCL00
@FCL00 4 жыл бұрын
16:30 drag form 17:30 Remove the title bar 18:50 Panel Layer
@KhopadiAtIndia
@KhopadiAtIndia 2 жыл бұрын
Awesome 👍 video sir ... For contribution I have seen all of the ads without skip.
@mitarninkovic3212
@mitarninkovic3212 4 жыл бұрын
Guys, you rock, so simple implementation...went trough tons of articles, nothing so simple...
@williammickeys
@williammickeys 5 жыл бұрын
Bro, awesome tutorial, you deserve more subscribers
@muhammadbilal6865
@muhammadbilal6865 4 жыл бұрын
Yes We must share his awesome effort he truly deserves more.Yes.
@najunajames5012
@najunajames5012 4 жыл бұрын
Awesome tutorial. Looked for this for a while Until I landed on your channel. It has more than I expected. You just earned a thumbs up bro.
@VinayKumar-gn5xn
@VinayKumar-gn5xn 2 жыл бұрын
Outstanding work sir and i have used your technique and it's really helpfull and thank you so much.
@haraldsonnleitner9747
@haraldsonnleitner9747 4 жыл бұрын
perfectly implemented instructions and great design. Many thanks for your effort
@13andseven60
@13andseven60 4 жыл бұрын
thanks bro...your tutorials are really helpful and awesome...keep it up bro
@dchubad
@dchubad 3 жыл бұрын
I found bug in your code. When you setup the btnHome_Click at 22:13 instead of clicking on a button in the list, click on the Home image first and you get this... System.NullReferenceException: 'Object reference not set to an instance of an object.' The error doesnt show up until you run the app and click the logo button first before clicking anything else :) This was my fix, crude but simple... private void btnHome_Click(object sender, EventArgs e) { if (currentChildForm != null) { currentChildForm.Close(); Reset(); } }
@egorbv5623
@egorbv5623 Жыл бұрын
me too thanks for the fix :)
@dchubad
@dchubad Жыл бұрын
@@egorbv5623 'Tips-Hat', you're welcome.
@derkthedutchi
@derkthedutchi 3 жыл бұрын
After downloading the FontAwesome.Sharp in VS WPF, it doesn't appear in my toolbox. Even after restarting it doesn't change. Any ideas?
@michaeljohnbaco2480
@michaeljohnbaco2480 3 жыл бұрын
great vid!
@mac-o-y
@mac-o-y 4 жыл бұрын
OMG, eres tan bueno que ya lo haces en ambos idiomas, sigue así. Eres el mejor.
@asafteinicoletadiana2832
@asafteinicoletadiana2832 3 жыл бұрын
Hei! I have an error about Drag form: SendMessage(this.Handle, 0x112, 0xf012, 0) --> "Argument :cannot convert from int to System.ComponentModel.Initialization.EventAttribute" What is this?
@gravitymotion1831
@gravitymotion1831 3 жыл бұрын
I have created all the form the code needs but went are write Openchildform (new FormDashboard ()) ; Error : formdashboard is not find. But I have created formdashboard
@kitzjanlerez6813
@kitzjanlerez6813 Жыл бұрын
Did you fix it?
@hakami1426
@hakami1426 2 жыл бұрын
If you are trying to resize your controls and they are not working, it might be because you have autosize set to true. That was the case for me
@senelithperera5425
@senelithperera5425 3 жыл бұрын
This is great !!!
@BOWEN1973
@BOWEN1973 4 жыл бұрын
Ive just installed the font awesome but the toolbar is not showing. Is there another step?
@hajersassi2039
@hajersassi2039 3 жыл бұрын
Awesome work! Thanks for publishing!
@Christian_Ky
@Christian_Ky 3 жыл бұрын
Things like 23:40 drive me crazy. Where did he get the simple close, minimize, maximize button icons? The exit one is just a "x" with Century Gothic font but the rest?
@RJCodeAdvanceEN
@RJCodeAdvanceEN 3 жыл бұрын
It is a button with an added image. You can download the icons from Flaticon.
@xXUkanlosXx
@xXUkanlosXx 4 жыл бұрын
Thank you ! i was looking for something like this for my project :) the design looks very modern, like spotify
@TheNoblephantasm
@TheNoblephantasm 4 жыл бұрын
this design is sleek and modern. i like it... :D
@kevinsobiski5212
@kevinsobiski5212 4 жыл бұрын
You can go into the form designer and change the name of the icon to whatever you need rather than trying to find it in the unsorted long list in the properties.
@rogoflap
@rogoflap 2 жыл бұрын
Great video. I like the Audio translation. Pretty sweet. I would like to know were you got the (Minimize, Maximize, and Close Icons you used.)?
@muhammadbilal6865
@muhammadbilal6865 4 жыл бұрын
Sir that was awesome amazing and the words are finished for your appreciation.Thank you so much.You are a great developer and a person with great heart because some developers will not share there amazing skills with which others can earn.Thanks.
@talhajunejo1297
@talhajunejo1297 4 жыл бұрын
Amazing work sir i really appreciate u keep it up
@berkeozkul4966
@berkeozkul4966 Жыл бұрын
The new FormDashboard() does not recognize. Do I have a problem with the child form?
@umerwaqas5943
@umerwaqas5943 4 жыл бұрын
You naild winforms bro Thanks a lot Now i can say winforms is ultimate
@vidcresnik9814
@vidcresnik9814 5 жыл бұрын
Amazing desings, opened my eyes for what can be done with WinForms. But i have a question.. Here while going through controls and opening the child forms, each time you create new instance of this form. This is not really usefull if you want to pass some values from one child form to another. For example in settings form you check some data and you want this to be used in some other child form. How would you do this? How can you also use methods created in one child form in another child form? thank you very much! Keep up the good job!
@RJCodeAdvanceEN
@RJCodeAdvanceEN 5 жыл бұрын
Hi, To pass values ​​to the forms, you could do it through the constructor or store it in a class and consume from any form.
@berfimkorkmaz7897
@berfimkorkmaz7897 3 жыл бұрын
@@RJCodeAdvanceEN Is there any tutorial you can recommend?
@AntonioRossiMusic
@AntonioRossiMusic 3 жыл бұрын
Have you resolved this problem?
@DavidCoded
@DavidCoded 2 жыл бұрын
Very helpful for dev C#! Thank you.
@Khameu
@Khameu Жыл бұрын
When You click on logo after app start it crashesh. Change code (13:33) this will fix private void btnHome_Click(object sender, EventArgs e) { if (currentChildForm != null) { currentChildForm.Close(); Reset(); } else return; }
@phnompenhcambodia7058
@phnompenhcambodia7058 3 жыл бұрын
I try using installing it to VS2015 why it didn't work ??
@theycallmeezio950
@theycallmeezio950 4 жыл бұрын
Best of the best 😁
@mikersamphors7877
@mikersamphors7877 3 жыл бұрын
Thank you! I am hungry to see your next video...
@fatimashehzadi8604
@fatimashehzadi8604 3 жыл бұрын
Hello! Great Tutorial but i want to keep my button back color white before clicking and icon color and forecolor Dark grey and after clicked want to change icon and fore color into white and back color into purplish can anybody tell which line of code should i change thanks in advance
@dukeliu2786
@dukeliu2786 3 жыл бұрын
I did it follow your steps, but there is a white top border on the form, could you tell me how to remove it? thanks a lot.
@RJCodeAdvanceEN
@RJCodeAdvanceEN 3 жыл бұрын
You can override the window processing method (WndProc) and remove the title bar and keep the SnapWindow function. I will try to make a tutorial of it.
@bernardcrnkovic3769
@bernardcrnkovic3769 4 жыл бұрын
22:00 "So here we simply close the child p..." *FBI, OPEN UP!*
@Andrews19jon
@Andrews19jon 4 жыл бұрын
hahahahaha
@JMRVRGS
@JMRVRGS 4 жыл бұрын
🤣🤣
@narcis.blendea
@narcis.blendea 4 жыл бұрын
What theme are you using for visual studio?
@Macias096
@Macias096 Жыл бұрын
Any idea why my program doesn't maximize when i pull to the top of the desktop? same, when i pull it to left or right side of desktop, it doesn't split :(
@huytruongdinh6456
@huytruongdinh6456 4 жыл бұрын
i have a question? i installed FontAwesome.Sharp but it still not appear on toolbox?
@fabijimenez.visuals
@fabijimenez.visuals 4 жыл бұрын
This helped me a lot to improve my project thank you so much!!
@zerosandones7547
@zerosandones7547 4 жыл бұрын
Why is my form not like this 17:45? I cant pin it when I drag it to the top and sides :(
@poulet_malassis7607
@poulet_malassis7607 4 жыл бұрын
Excellent ! Thank you for this video.
@abdullahsaglam3088
@abdullahsaglam3088 3 жыл бұрын
System.Deployment.Application.InvalidDeploymentException (SignatureValidation) - The strong name signature is not valid for this FontAwesome.Sharp.dll assembly. Can u Help me for this problem ? I use for Click-one app..
@ELarivie
@ELarivie 2 жыл бұрын
@@ToastedDen same
@DeskofsharmaG
@DeskofsharmaG 2 жыл бұрын
hi thanks for your valuable video. Please help me how to add Tooltips on iconbutton when mouse over.
@x7falcon689
@x7falcon689 4 жыл бұрын
Thank You So Much !
@nix3r256
@nix3r256 4 жыл бұрын
Hello, can u help me? You have dark thing above your app. I have it white. How turn it to the dark? :D
@이기석-m8q
@이기석-m8q 2 жыл бұрын
Thank you. This is very useful to me.
@hunar.abubakir
@hunar.abubakir 4 жыл бұрын
thank you for your awesome tutorial, when I add IconButton to my form and run it, the form scaling is change and it appears much smaller than it's original size, could you help me with this problem?
@RJCodeAdvanceEN
@RJCodeAdvanceEN 4 жыл бұрын
Hi, It is because the size and type of font of the main form and the child form are different. It is advisable not to configure the default form Font, or configure the Font of controls. that way the Font of the form will not affect the Font of the control.
@eswaranpaneerselvam9883
@eswaranpaneerselvam9883 Жыл бұрын
i could not able to retain the Userinputs on the Subforms, When i switch to another subform the userinputs of the Previous form resets.....OR Am i missing something on this?
@gizemdenizkoksal8815
@gizemdenizkoksal8815 3 жыл бұрын
You are really amazing thank you so much
@The_real_tactical_ghost
@The_real_tactical_ghost 4 жыл бұрын
Awesome work, thank you
@wsilvawgt
@wsilvawgt 8 ай бұрын
Hello, I really liked your video and I'm studying programming and I wanted to recap your producer, but when I'm going to put the colors in the names, the color is on the top left side and I can't get it there to put it with the names, could you please me? Help with this, I've watched the video more than 10 times and I can't resolve this error
@shahidullahjan3783
@shahidullahjan3783 2 жыл бұрын
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?
@ducnguyen_36
@ducnguyen_36 3 жыл бұрын
Wow! u're perfect!
@42sol
@42sol 3 жыл бұрын
Great Design, great video! It is getting better and better! I love you solution with the audio. How do you create that?
@niyazawa
@niyazawa 4 жыл бұрын
thank you so much! Your video helped me a lot!
@isosek6625
@isosek6625 4 жыл бұрын
Cool video. Trying it out myself now. One question. How comes that the rgb color you choose shows underneath the code line ? Can't find the option for that.
@DavidDanosTech
@DavidDanosTech Жыл бұрын
Very good work. I just wondering as a beginner I am why did you use new forms instead of usercontrols ?
@alphonsealset4780
@alphonsealset4780 4 жыл бұрын
thats so cool!
@tramvo4688
@tramvo4688 3 жыл бұрын
I turned off Visual Studio and when I opened it again, I have 1 error:" Error HRESULT E_FAIL has been returned from a call to a COM component. " can you help me
@danyer9699
@danyer9699 8 ай бұрын
Gracias bro. lo aprecio mucho.
@worlukk
@worlukk 4 жыл бұрын
great video!
@ifuoo
@ifuoo 3 жыл бұрын
hey, i created so much but i dont want much code, at what moments (like 24:38) i need to type to show different panels in my program?
@huyvole9724
@huyvole9724 3 жыл бұрын
Master winform!!!!
@naedlorenzo3848
@naedlorenzo3848 2 жыл бұрын
Does anyone can direct me where to watch his video regarding if you create a button from the childform of currentchild it will trigger to go back to current childfrom?
@hakami1426
@hakami1426 2 жыл бұрын
what is the color helper you have?
@viethoangtruong9240
@viethoangtruong9240 Жыл бұрын
I downloaded FontAwesome but, it didn't show up in view of Toolbox. CAN EVERYONE HELP ME. PLEASE!
@serhatkaradag8786
@serhatkaradag8786 3 жыл бұрын
12:33 The Dashboard button didnt work corectly at first time.
@achlyplays4885
@achlyplays4885 Жыл бұрын
how to fix?
@ir_car-en01-tranuclong39
@ir_car-en01-tranuclong39 Жыл бұрын
I found it great.
@crazyjoy
@crazyjoy 4 жыл бұрын
Your voice nice ! Very pleasantly listen and programming :)
@jonas9
@jonas9 4 жыл бұрын
Thats a computer voice, isn't it?
@jessicawong1536
@jessicawong1536 2 жыл бұрын
Wonderful!
@fredrik354
@fredrik354 4 жыл бұрын
Great tutorial, thank you!
@chess228
@chess228 3 жыл бұрын
how did you add forms in desktop at the end 20-51?
@LuckyApplez
@LuckyApplez 4 жыл бұрын
20:56 How does he make secondary panels? When i try to copy and paste my original form i get 500 errors. Do i have to recreate them manually? And do i do the same code for the other forms just like the main one? This part really confuses me.
@geblickt5668
@geblickt5668 4 жыл бұрын
You have to right click on your c# project an add a new element ( windows forms forumlar) The new formular you implement in the method btn_Dashboard_Click(Form childform) this childform is the new windows forms formular you added^^ you have to name them both the same name
@MacmamenPro
@MacmamenPro 4 жыл бұрын
@@geblickt5668 Hy, after we added the new windows forms forumlar we have to remake all projet on the new form? is there any way to do like an copy paste?
@geblickt5668
@geblickt5668 4 жыл бұрын
@@MacmamenPro in the new form you don't have to do all this stuff, because it your menu on the left side will stay.
@MacmamenPro
@MacmamenPro 4 жыл бұрын
@@geblickt5668 thx, question, do you know any good tutorial for how to do add database on visual studio? i'm making a project and i do like a Hotel Gestion app but i dont know how to stock information, client first name last name etc
@geblickt5668
@geblickt5668 4 жыл бұрын
​@@MacmamenPro you don't have to remake all steps of the project like in your first windowsForm, because you add a Instance of your new Form in the panel (here called panelDesktop and dock it here fullsize)
@DeSibyl
@DeSibyl 4 жыл бұрын
how do you add the tools manually since mine didn't get added.
@danielflintof4885
@danielflintof4885 4 жыл бұрын
what us your theme? Send me that. It is nice for eyes - looks like material blue with cutom work.
@coffeebydny393
@coffeebydny393 4 жыл бұрын
marketplace.visualstudio.com/items?itemName=gjactat.palenightvs2017
@ArunTr
@ArunTr 5 жыл бұрын
Very nice thank you bro
@yildirimsercan
@yildirimsercan 3 жыл бұрын
this is very good
@gravitymotion1831
@gravitymotion1831 3 жыл бұрын
Please sir RJ CODE I have a problem with the : openchildform( new Form Dashboard)); Because the code don't recognize all secondary formdashboard and another. Explain me please
@TGameDev
@TGameDev 3 жыл бұрын
Did you put them in a folder? If so then you'll need to access it with the dot operator like so: OpenChildForm(new MyFolder.MyForm()); Also, doublecheck the spelling of the form you wish to open as well.
@roghibashfahani15
@roghibashfahani15 Жыл бұрын
hello sir, why my iconChar is not move to right when we click that?
@DarkShadow-oh5di
@DarkShadow-oh5di 5 жыл бұрын
Nice❤
@michaelbasbas9568
@michaelbasbas9568 4 жыл бұрын
It is possible that if I transfer my project into another laptop without don't awesome may design will ruin or destroy ?
@mahadihassan6952
@mahadihassan6952 4 жыл бұрын
side panel button works only . need to switch from one child form to another child form. what can i do?
@MANMEETSINGH1993
@MANMEETSINGH1993 4 жыл бұрын
Great video sir thanks
@aliadnanasghar2062
@aliadnanasghar2062 3 жыл бұрын
i have created child forms, when show them in parent at maximize state, right side of the child form having everything like textbox,table,label gets hide...why??
@aliadnanasghar2062
@aliadnanasghar2062 3 жыл бұрын
now i have tested, when i removes the all buttons of font awesome iconbuttons, then everythings is alright..whats the root cause?
@neural177
@neural177 4 жыл бұрын
I saw that you changed the background color using RGB numbering. How do I do that too? My Visual Studio does not accept numbers as a parameter to change the background color of my window.
@maliklaszlo3976
@maliklaszlo3976 4 жыл бұрын
Use semicolon instead of dash between the numbers. So example: 30;25;62
@unforgivenyasuo9082
@unforgivenyasuo9082 2 жыл бұрын
hey what font you use for your visual studio ?thank you
@programwithdenis3643
@programwithdenis3643 4 жыл бұрын
Hello Sir I have added button on my left panel and docked to the top but my problem is how to duplicate to other buttons
@mosqali1970
@mosqali1970 3 жыл бұрын
what is the name of your theme? it looks awesome
@andersonlemos6001
@andersonlemos6001 4 жыл бұрын
Ola, sou do Brasil. Nota 10 seu tutorial. Meus parabéns.
@raphael2921
@raphael2921 3 жыл бұрын
Are you making a collection of Visual Studio?
@muhammadshaharyar2084
@muhammadshaharyar2084 3 жыл бұрын
Exactly what i was looking about thankyou so much for this great tutorial Now please tell me 1 thing I want to implement a nested pages in side bar of desktop is it possible with this if yes kindly guide me how i can do that.. Thanks in Advance..
@amen8370b
@amen8370b 4 жыл бұрын
Thank you a lot, it really helped
@johnarnoldcatedrilla4378
@johnarnoldcatedrilla4378 4 жыл бұрын
i cant create a new form (child form) WHY?!!!
@MrJuche23
@MrJuche23 2 жыл бұрын
Can you make this same project in WPF?
@mvzex
@mvzex 3 жыл бұрын
Does anyone know how to get rid of the top border on the form? Tell me pleas I want to remove it.
@muratbaylan5531
@muratbaylan5531 2 ай бұрын
Harikasın usta
@bachhuynh1562
@bachhuynh1562 4 жыл бұрын
But everytime click button, the current form will refresh when come back to it?
@klod5928
@klod5928 4 жыл бұрын
When i put the other form in panel why my label text says the name of my form? help pls
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
黑天使只对C罗有感觉#short #angel #clown
00:39
Super Beauty team
Рет қаралды 36 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
C# - Custom Notification Form in WinForm App C#
22:19
Code with HuSyN
Рет қаралды 114 М.
How to Create a Modern Sliding Sidebar | C# Winform
17:32
Coding Ideas
Рет қаралды 204 М.
C# WPF Modern UI Flat Design Tutorial
20:25
Payload
Рет қаралды 222 М.
WPF C# Professional Modern Flat UI Tutorial
36:44
Payload
Рет қаралды 849 М.
How to Create a Modern Flat UI Design Dashboard in C# 2020
21:08
Final Modern UI - Aero Snap Window, Resizing, Sliding Menu - C#, WinForms
21:36
Custom Button - Rounded, Pill or Square Shape - WinForm C#
14:21
RJ Code Advance EN
Рет қаралды 165 М.
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН