Тёмный

How To Resize Controls When Form Changes Size In C# | Windows Forms | Visual Studio 2022 

Shaun Halverson
Подписаться 10 тыс.
Просмотров 49 тыс.
50% 1

Опубликовано:

 

23 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 92   
@МаксимМутовин-ъ2г
@МаксимМутовин-ъ2г 2 года назад
i find a mistake in method resizeControl not int newX = (int)(r.Width * xRatio); int newY = (int)(r.Height * yRatio); true its: int newX = (int)(r.Location.X * xRatio); int newY = (int)(r.Location.Y * yRatio);
@enderspider5001
@enderspider5001 2 года назад
THANK YOU SO MUCH!!
@fredericlessard3464
@fredericlessard3464 2 года назад
Best comment!!
@ChrisCookTech
@ChrisCookTech 2 года назад
Life saver
@RenatoT66
@RenatoT66 2 года назад
yes, i see the same. So how it worked? :)
@slavslavov9893
@slavslavov9893 2 года назад
красава, Максим
@alphasauroxviix4235
@alphasauroxviix4235 2 года назад
high quality content, ty! Your channel deserves to be so much bigger, keep it up.
@ShaunHalverson
@ShaunHalverson 2 года назад
Thank you! Comments like this are the best :)
@hallythejester1234
@hallythejester1234 7 месяцев назад
Would you mind remaking this tutorial with a bunch of controls of many different types. I tried it your way, precisely, but regardless of what I set the anchor property of a control to inside visual studio, the second the form got smaller than it’s initial size all the controls decided to throw a party on top of one another in the upper left hand corner. Even if the distance between the bottom of the form and the controls that were set to anchor at the bottom prior to resizing vs the distance between the bottom of the form and the bottom of the control set to anchor at the bottom were not even *remotely* similar. You’d think the y coordinate of the controls set to anchor at the bottom would be less after resizing than they were prior, right? Nope. Bigger. The (maybe) good news is I have managed (I think) to eliminate the need all the rectangle variables in the form load and the partial class except for the form size. I just declared/initialize the form size variable in the class and in the load method the way you said. Then I eliminated the resize method and put all the dirty work in the in form resize method. Like this: Form1_Resize(//the normal stuff here) { Int xRatio= this.width/ o.f.s.Width; //tried it as a float but still don’t work your way) int yRatio = this. Height/ o.f.s.height; Int initialX; Int initialY; int initialWidth; Int initialHeight; foreach(Control con in panel1.controls) { Con.width = initialWidth; Con.height= initialHeight; Con.Location.x = initialX; Con.Location.y = initialY; Con.Location = new Point(initialX*xRatio, initialY * yRatio); Con.Size = new Size(initialWidth * xRatio, initialHeight* yRatio); } } PS: before anyone tells me that I can’t blame him for my own code not working….I did it exactly the way he said in the video originally. The behavior of the controls were exactly the same as it is rn, at least when it comes to shrinking the form. At least this way I don’t have like a gazillion extra rectangle variables.
@cappatalistpigeon3246
@cappatalistpigeon3246 9 месяцев назад
Thank you so much tremendous video I spent so long looking how to do this so strange windows forms don’t have it built in already
@pgbollwerk
@pgbollwerk Год назад
Thanks for this. I'm complete new to C#. I've dipped my toe into C# because I want to create a "launcher" window on startup where a user picks one of 2 applications. (for a home arcade setup, which won't have a keyboard or mouse - only a joystick/buttons which pass key presses) I've managed to create a static sized form window that works with both buttons. But now I want to see if I can make the window maximized and resize the buttons properly, regardless of the actual screen resolution. In my scenario, the window will not be resizable, but simply always maximized. Hopefully your tips here will guide me down that road.
@468theking
@468theking 2 года назад
it doesn't work!! control vanish if form resized!!
@pierrejoubert616
@pierrejoubert616 11 месяцев назад
This is extremely helpful man. Thank you for the thorough walkthrough!!
@martintrost815
@martintrost815 Год назад
The reason why we use rectangle is because all controls are some sort of rectangle! Nice.
@soggychip3784
@soggychip3784 2 года назад
thank you I've spent ages trying to find this. definetly subbing
@HelianGamePiano
@HelianGamePiano 2 года назад
Thank you for making this creative idea ! Not to say anything bad about this idea but I guess it is not really optimal and usable in reality ? Because I see people only make windowed mode or full-screen mode for apps. I also think this code really consumes memories as it literally render everything visible before our eyes in real time, and let's say we don't have just 1 button but thousand of actions at the moment. How do you think about my opinion ? Still, thanks for sharing this :D
@WDFQofficial
@WDFQofficial 2 года назад
It'd be generous if you'd share any ways that are easier than this and more usable/optimal?
@gamingforfun1295
@gamingforfun1295 Год назад
I think that since the action is only called on form resize that it actually isn't too intensive? It only runs while the form is being actively resized
@ncueBenson
@ncueBenson Год назад
@@gamingforfun1295 resize will be called multiple times while you modify windows size .
@ncueBenson
@ncueBenson Год назад
Maybe we can use ResizeEnd to avoid it occur.
@hintsoftware
@hintsoftware 3 месяца назад
Font size should also be resized accordingly ?
@zyz780
@zyz780 2 года назад
Very helpful video, but I got a problem, my controls will jump to another location when I first resize my form.
@pierresdecor365
@pierresdecor365 2 года назад
you neew to make the following corrections: int newX = (int)(r.Location.X * xRatio); int newY = (int)(r.Location.Y* yRatio); instead of int newX = (int)(r.Width * xRatio); int newY = (int)(r.Height* yRatio);
@mysticdrk
@mysticdrk 2 года назад
@@pierresdecor365 thank you, had the same problem :)
@jasonport6691
@jasonport6691 Год назад
Great video, I am creating a borderless form application which has forms loaded within a panel on the mainform, I wish to drag and drop between 2 different screen resolutions, however the control is not resizing with the form when dragged from the smaller on to the larger one. If i close the childform on the larger screen and reopen it, it is correct size.
@buraktuzun9690
@buraktuzun9690 Год назад
Thank you so much Shaun. This video is very helpful.
@MrAnime-404
@MrAnime-404 11 месяцев назад
Is it possible to select all elements in my application without having to write a 'buttonOriginalRectangle' for each element? I have 7 buttons, 1 picture box, a menu strip, and a label, and I want them to dynamically resize perfectly.
@adibobish9766
@adibobish9766 9 месяцев назад
You could also use a panel and set every control's parent as the panel
@MineBlox_Gaming
@MineBlox_Gaming Год назад
Thanks it also works on visual studio 2019 cause 2019 and 2022 don't have much difference also good content keep it up! But how do I use it for multiple buttons and object? Or even for all object in the form?
@ElectroGamesYT
@ElectroGamesYT 2 года назад
Does this work with TextBoxes and MenuStrips? It does not seem to be working. The text box just disappears and nothing happens to the MenuStrip.
@ShaunHalverson
@ShaunHalverson 2 года назад
Have you tried setting autosize to false for those?
@ElectroGamesYT
@ElectroGamesYT 2 года назад
@@ShaunHalverson They are false on default.
@ShaunHalverson
@ShaunHalverson 2 года назад
​@@ElectroGamesYT Alright let's start with the textbox first. Is it set to multiline?
@frantisekvanecek1693
@frantisekvanecek1693 Год назад
Thanks for video. But I have problem and I cannot find solution. It works on computer where is visual studio. When I copy release build to the other computer where is not VS, the resize function causes the controls to not be displayed at all. If I comment resize function controls are showen. Do you have some idea?
@seanyalcin8781
@seanyalcin8781 2 года назад
High quality tutorial really liked it. My button only becomes visible after I resize the form and not when it initially loads why is this?
@ShaunHalverson
@ShaunHalverson 2 года назад
Thanks for the kind words and glad you enjoyed it, that is a weird bug I don’t think I have heard of before. Feel free to add me on discord and I can take another look if you’d like
@seanyalcin8781
@seanyalcin8781 2 года назад
@@ShaunHalverson Where can I find your discord?
@hiluu
@hiluu Год назад
i have the same problem too. Did you fix it?
@blackflame_
@blackflame_ 2 года назад
Now the form controls aren't even visible on the screen lol
@AravindKumar-lj7kx
@AravindKumar-lj7kx Год назад
Great explanation...could you create a video to increase the text size which is inside the button.
@andrei_1603
@andrei_1603 Год назад
change the font size of the button
@ntrainride
@ntrainride 2 года назад
okay. but o. s.s that allow real time proportional sizing of all objects in a window. all objects shrink. everything in the window remains. just that reducing the size of a window makes the complete image shrink. guess it's hard to articulate.
@apkirkpatrick8180
@apkirkpatrick8180 Год назад
Good job Shaun!
@greese
@greese Год назад
How would I use this method to resize the text on the button or a textBox?
@christianduran-bm4mv
@christianduran-bm4mv Год назад
Only works if you have one control. If you add controls they all go to the same position or stack on top of each other. This is more confusing than leaving it and just losing it when resizing.
@buraktuzun9690
@buraktuzun9690 Год назад
Change newX and newY lines like this int newX = (int)(r.Location.X* xRatio); int newY = (int)(r.Location.Y* yRatio); you should use r.Location, not r.Width or r.Height
@amirzamani6239
@amirzamani6239 Год назад
shit bro thanks that helped me @@buraktuzun9690
@lapisbrainprint9607
@lapisbrainprint9607 2 года назад
Thanks for the video. I am so close to actually making it work for me and yet so far. For some odd reason my "button1" cannot be called in my "resizeControl" function because it is of class Forms::button(Forms.button for C#) instead of Forms::Control (Forms.Control for C#) and it messes up my project. I would just copy ur entire project but I am trying to implement it on c++...
@PiterparkerYT
@PiterparkerYT 10 месяцев назад
i ran into same issue. to fix it just change Control c to Control^ c also make sure to change c. to c-> after that
@martintrost815
@martintrost815 Год назад
I think line 34 and 35 maybe need to be edited, don't they? They should be changed to int newX = (int)(r.X * xRatio); int newY = (int)(r.Y * yRatio);
@danielmisra2912
@danielmisra2912 2 месяца назад
THANK YOU SO MUCH , SAVED ME!!!!
@Явижусвоимиглазами
Thanks very helpful video
@ShaunHalverson
@ShaunHalverson 2 года назад
Thank you! :)
@sadravin1
@sadravin1 8 месяцев назад
Unfortunately, your solution is also not true scaling. It is a good dirty method to fix a one off issue, but lacks text scaling and alignment anchoring. Thanks anyways.
@VulcanRavenPL
@VulcanRavenPL 5 месяцев назад
so write solution in your comment would like to see how you would do it
@TheRealLeoblox
@TheRealLeoblox 2 года назад
Could you please show me how to do multiple buttons instead of just one???
@EGLOVEzicgo
@EGLOVEzicgo 2 года назад
Is picturebox possible? There are no autosize and mode items in the properties window
@adnangharbi8982
@adnangharbi8982 2 года назад
Greate Work thank you so much
@ShaunHalverson
@ShaunHalverson 2 года назад
Thank you :)
@film30dnimroku
@film30dnimroku 2 года назад
Thank you
@ShaunHalverson
@ShaunHalverson 2 года назад
Thanks for watching!
@longca2228
@longca2228 Год назад
I like the video at all
@m.s7839
@m.s7839 Год назад
No tutorial seems to help me with what i need. I want to make the form scale according to the resolution like you resize a image in photoshop/paint.
@WDFQofficial
@WDFQofficial 2 года назад
I tried this with my picture box. I'm sure I've got everything correctly but every time I resize my window it just dissapears. Any ideas why? Edit: got it all sorted. Found solution in comments.
@damianortellado2243
@damianortellado2243 Год назад
how did you fix this? I had the same problem
@bistbist1615
@bistbist1615 Год назад
I am using .net frame work in windows forms app but my form won't load
@hxndrik
@hxndrik 6 месяцев назад
there must be a better way of doing this, no way i need to add code for each form? what about just using tablelayoutpanels?
@aksvinss
@aksvinss 2 года назад
Can I get help to do this in c++?
@enderspider5001
@enderspider5001 10 месяцев назад
OMG THIS GUY SPEAKS NORMAL ENGLISH HOLY SHIT
@leventegaal9531
@leventegaal9531 2 года назад
It works in uwp?
@ShaunHalverson
@ShaunHalverson 2 года назад
Not totally sure, you would have to try that out. I know for a fact it works in C# though :D
@魏勤龙
@魏勤龙 2 года назад
EDITED? orignal code has bug ^ ^; newx newy is not correct
@rokiedebian2692
@rokiedebian2692 Год назад
thats a lot of coding for one button but what if you have a lot of components in the UI
@NoMan-991
@NoMan-991 7 месяцев назад
Thank you from Russian
@Alexandru-IoanVacaru-r8f
@Alexandru-IoanVacaru-r8f Год назад
int newX = (int)(r.X * xRatio); int newY = (int)(r.Y * yRatio); In the video you don't update the locations correctly. You used the width and height.
@sjt62349
@sjt62349 11 месяцев назад
Nice job, I get the concept, BUT no one has a form with one button. So this video does not really help much. ---sjt
@NightTimeStories-y7h
@NightTimeStories-y7h Год назад
It should be int newX = (int)(r.X * xRatio); int newY = (int)(r.Y * yRatio);
@amiryazdanparast9827
@amiryazdanparast9827 2 месяца назад
🙏🌹
@IamJasiek
@IamJasiek 2 года назад
not working
@m_r-ock6508
@m_r-ock6508 Год назад
autocomplete carried the whole video lol
@PASHKULI
@PASHKULI Год назад
text stays the same size… half-job
@MobiusNull
@MobiusNull 2 года назад
speak less buddy
Далее
Intro to Windows Forms (WinForms) in .NET 6
1:35:50
Просмотров 230 тыс.
I tricked MrBeast into giving me his channel
00:58
C# How to Auto Size Windows Forms & Controls
16:21
Просмотров 13 тыс.
Dear Game Developers, Stop Messing This Up!
22:19
Просмотров 721 тыс.