How to Create a Modern Flat UI Design Dashboard in C# (Part 2)

  Рет қаралды 67,871

CodeCraks

CodeCraks

Күн бұрын

Пікірлер: 88
@nannapatchanel21
@nannapatchanel21 Жыл бұрын
Great Job! Your VDO help me a lot !
@christiandebellefeuille3245
@christiandebellefeuille3245 3 жыл бұрын
Great job, but some improvement could be made like having a single method "loadPanel" to load whatever you want to load :D Here's what i've done. First, you define every form you want to load, within the class, instead of defining them at the "Click" method level. This way, each form keep their state (UNKNOWN asked for that 2 months ago). frmDashboard frmDashboardWindow = new frmDashboard() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true }; frmSettings frmSettingsWindow = new frmSettings() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true }; Then, define this method: private void loadPanel(string iTitle, System.Windows.Forms.Form iForm) { lblTitle.Text = iTitle; this.pnlFormLoader.Controls.Clear(); this.pnlFormLoader.Controls.Add(iForm); iForm.Show(); } Then in every Button Click method, just call it like this: loadPanel("Dashboard", frmDashboardWindow) or loadPanel("Settings", frmSettingsWindow)
@christiandebellefeuille3245
@christiandebellefeuille3245 3 жыл бұрын
well, could do even better. Just define a dictionnary of Forms, and have the title to be the key. private Dictionary screens = new Dictionary(); Populate the dictionary like this: screens.Add("Dashboard", new frmDashboard() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true }); screens.Add("Settings", new frmSettings() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true }); Add the first line to the loadPanel, and remove it's 2nd parameter: private void loadPanel(string iTitle) { System.Windows.Forms.Form iForm = screens[iTitle]; lblTitle.Text = iTitle; this.pnlFormLoader.Controls.Clear(); this.pnlFormLoader.Controls.Add(iForm); iForm.Show(); } then call it like this: loadPanel("Dashboard")
@anycolouryoulike9160
@anycolouryoulike9160 3 жыл бұрын
noice
@ivanneshkov9363
@ivanneshkov9363 Жыл бұрын
very helpful and useful, thank you for uploading great content!
@MrMemo0325
@MrMemo0325 2 жыл бұрын
How do you make the form able to be dragged?
@alexwang7557
@alexwang7557 3 жыл бұрын
On your dashboard form, what control(s) or NuGet package do you recommend that can actually plot some meaningful graphs instead of just a picture control having a static image?
@Romlingen
@Romlingen 3 жыл бұрын
Great GUI design, but teaching people this much copy/paste is not good. Create common functions instead.
@wuzz5703
@wuzz5703 3 жыл бұрын
u old
@umeicrazy9567
@umeicrazy9567 3 жыл бұрын
Thx very much!
@JasonLeePascal
@JasonLeePascal 3 жыл бұрын
Can u make a tutorial to make a few settings like dark/light mode or background music/login sound
@CodeCraks
@CodeCraks 3 жыл бұрын
Yeah Sure
@mrfred5706
@mrfred5706 3 жыл бұрын
Hello, I have a problem with navigation menu: after adding formloader color of the button is missing, what can i to do?
@CodeCraks
@CodeCraks 3 жыл бұрын
Are you talking about the the menu buttons back color
@wuzz5703
@wuzz5703 3 жыл бұрын
make part 3 plz
@shawenahmed3254
@shawenahmed3254 3 жыл бұрын
great👍
@emanuelcristianborz246
@emanuelcristianborz246 3 жыл бұрын
I can’t set rgb colors code or any combination on properties… do i need an extension or something else? I have just that three options… Thank u!
@CodeCraks
@CodeCraks 3 жыл бұрын
No
@JasonLeePascal
@JasonLeePascal 3 жыл бұрын
Ist it possible to combine the register/login with the Gui ?
@CodeCraks
@CodeCraks 3 жыл бұрын
Possible but it will get more complicated
@sictInsights
@sictInsights 4 жыл бұрын
wow nice
@CodeCraks
@CodeCraks 4 жыл бұрын
Thanks
@bychrise.2837
@bychrise.2837 3 жыл бұрын
PLS REUPLOAD THE PROJECT I CANT DOWNLOAD Googledrive says its Infected and only the admin can donwnload infected files pls reuploasd thx
@ethanchua714
@ethanchua714 Жыл бұрын
i keep having an ArgumentException when running the line "this.PnlFormLoader.Controls.Add..." any ideas how to troubleshoot this ?
@UNKNOWN-yu5xj
@UNKNOWN-yu5xj 3 жыл бұрын
When you move to another form, the form is initialized. I want to keep it in a state.
@christiandebellefeuille3245
@christiandebellefeuille3245 3 жыл бұрын
See my commetn if you haven't found the solution yet... but it was definitely an easy thing to find
@gorilla2343
@gorilla2343 2 жыл бұрын
when i open the app the main frame doesnt open how can i fix this?
@alexefe6972
@alexefe6972 3 жыл бұрын
I have problem with the From 4_vrb..... from boarderstyle= fromboarderstyle.none;
@CodeCraks
@CodeCraks 3 жыл бұрын
Check out the project files link given below in the description
@Timmyyyyy
@Timmyyyyy 3 жыл бұрын
This might be an odd request but can you show/tell me how I can inject a Dll using this
@bbrty01
@bbrty01 3 жыл бұрын
Lookup manual mapping c# you'll find answers there...
@nickstar6872
@nickstar6872 2 жыл бұрын
Cheat dev detected.
@wijiang9807
@wijiang9807 3 жыл бұрын
can you make a vid on how like you can make a login page leading to the Dashboard page also like displaying the username on the username spot?
@CodeCraks
@CodeCraks 3 жыл бұрын
Can i will in the next video
@wuzz5703
@wuzz5703 3 жыл бұрын
@@CodeCraks O
@MB-hg3lh
@MB-hg3lh 8 ай бұрын
Why can't I move mine around?
@sahaljamaica
@sahaljamaica 3 жыл бұрын
Where i can get Icons pro-like :)
@CodeCraks
@CodeCraks 3 жыл бұрын
At freepik.com
@hdworkshop7115
@hdworkshop7115 4 жыл бұрын
When you click button there's no BackColor Can you explain me why? Btw. your videos are great :D
@CodeCraks
@CodeCraks 4 жыл бұрын
Because earler in the part 1 video there are no multiple forms were open so the back color changes when it was active. In this it forces on the multiple form thats why the back color dosent work
@zexceedd5529
@zexceedd5529 Жыл бұрын
@@CodeCraks hey are you still here? I can't solve this problem, how can I fix this? thanks
@melvinarkegren514
@melvinarkegren514 3 жыл бұрын
My boards zooms in when I start the program. I can just see a half of the boards. Why?
@CodeCraks
@CodeCraks 3 жыл бұрын
Boards?
@melvinarkegren514
@melvinarkegren514 3 жыл бұрын
​@@CodeCraks I fixed it
@wuzz5703
@wuzz5703 3 жыл бұрын
hey dude this doesnt work private void BtnCalender_Click(object sender, EventArgs e) { lblTitle.Text = "Calender"; this.PnlFormLoader.Controls.Clear(); frmCalender FrmDashboard_Vrb = new frmCalender() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true }; FrmDashboard_Vrb.FormBorderStyle = FormBorderStyle.None; this.PnlFormLoader.Controls.Add(FrmDashboard_Vrb); FrmDashboard_Vrb.Show(); i did it and it doesnt redirect me to my form
@kalipsotr
@kalipsotr 3 жыл бұрын
Download link don't working, please part2 download mega link.
@CodeCraks
@CodeCraks 3 жыл бұрын
It’s working
@bathiyapulasthi8748
@bathiyapulasthi8748 2 жыл бұрын
where is the Project files and Resources?
@CodeCraks
@CodeCraks 2 жыл бұрын
In the Description
@Ninja_bit
@Ninja_bit 3 жыл бұрын
can you do it in python?
@CodeCraks
@CodeCraks 3 жыл бұрын
Sry dude I’m still not good in python
@andrebezerra1396
@andrebezerra1396 3 ай бұрын
your website is not really working
@NEXC
@NEXC 3 жыл бұрын
hello can you please reupload source file
@CodeCraks
@CodeCraks 3 жыл бұрын
It’s totally working right the The source link. then why?
@NEXC
@NEXC 3 жыл бұрын
@@CodeCraks no it is not working, the website is down and the Google drive link has been removed 😭 :( Please can you reupload to any other file sharing site like gofile or sql.gg and send again!! ❣️
@CRA_CKz_alt
@CRA_CKz_alt 3 жыл бұрын
@@CodeCraks it's not working please just reupload it
@jazzrox12
@jazzrox12 3 жыл бұрын
the download does not work
@CodeCraks
@CodeCraks 3 жыл бұрын
Try again
@jazzrox12
@jazzrox12 3 жыл бұрын
@@CodeCraks i have they still dont work
@abelsanca6403
@abelsanca6403 3 жыл бұрын
@@CodeCraks the download does not work :c
@CodeCraks
@CodeCraks 3 жыл бұрын
You mean the source code file?
@jazzrox12
@jazzrox12 3 жыл бұрын
@@CodeCraks yes
@matastunkevicius3557
@matastunkevicius3557 3 жыл бұрын
Looks good but this has so many bad practices it's pretty sad
@christiandebellefeuille3245
@christiandebellefeuille3245 3 жыл бұрын
I always love people complaining but not giving their solution to a problem. So easy to drop a single Bomb like this :D Good job Sherlock
@asimshahzad5158
@asimshahzad5158 Жыл бұрын
dear what is the password of zip file?
@youssef8719
@youssef8719 3 жыл бұрын
Linke dont working
@CodeCraks
@CodeCraks 3 жыл бұрын
What do you mean? It's working Does it show any error or broken link?
@SarrawyDev
@SarrawyDev 4 жыл бұрын
Learn Xamarin kzbin.info/aero/PLcYfGPOcgilmKJHJ7OXM0c-79-ueBav_t
@beckett4052
@beckett4052 2 жыл бұрын
The download for the source code is a virus.
@trafalgar7330
@trafalgar7330 2 жыл бұрын
yes its a virus
@JasonLeePascal
@JasonLeePascal 3 жыл бұрын
i cant move the window xD
@CodeCraks
@CodeCraks 3 жыл бұрын
xD?
@JasonLeePascal
@JasonLeePascal 3 жыл бұрын
@@CodeCraks linke the Gui frame its frozen
@CodeCraks
@CodeCraks 3 жыл бұрын
Check the from or components property (lock) set it to false
@JasonLeePascal
@JasonLeePascal 3 жыл бұрын
@@CodeCraks nope that dont worj, I mean Like when you Test/start the Gui i cant move it with my mouse
@CodeCraks
@CodeCraks 3 жыл бұрын
Ya you should add a code to do that
@JohnWick-pr8oh
@JohnWick-pr8oh 3 жыл бұрын
I cant really recommend this for learning anything in C# sadly.
@lumpyren
@lumpyren 2 жыл бұрын
Dude requires a sign up on his website to get the code, and then still doesnt let you download the code. Very scammy and looks like he is collecting email accounts.
@imjosephgamit
@imjosephgamit Жыл бұрын
download link?
@CodeCraks
@CodeCraks Жыл бұрын
mega.nz/file/jYx1AALa#81Q_OapxP8tCcn-8Xpfi5PJgQ84nHcjNzqGLVVm7yRE
@imjosephgamit
@imjosephgamit Жыл бұрын
@@CodeCraks password
@CodeCraks
@CodeCraks Жыл бұрын
codecraks.com
@imjosephgamit
@imjosephgamit Жыл бұрын
Thank you so much
How to Create a Modern Flat UI Design Dashboard in C# 2020
21:08
How to Create a Splash Screen With Custom Progress Bar in C#
12:41
One day.. 🙌
00:33
Celine Dept
Рет қаралды 77 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 21 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
How to create a Fully Responsive Form (Dashboard UI) - C# & WinForms
23:39
RJ Code Advance EN
Рет қаралды 103 М.
C#/ Modern Flat UI + Font Awesome Icons, Multicolor, Highlight button, WinForm
24:46
C# WPF Modern UI Flat Design Tutorial
20:25
Payload
Рет қаралды 222 М.
Why aren't you using Fastify? Or Koa? Or NestJS?
9:58
Maximilian Schwarzmüller
Рет қаралды 68 М.
I tried 10 code editors
10:28
Fireship
Рет қаралды 3,2 МЛН
One day.. 🙌
00:33
Celine Dept
Рет қаралды 77 МЛН