any suggestion to good Layout engine for windows form ?
-
I plan to write a Windows Form app in C# with some complicated GUI to manage all kinds of components. looking for a Layout engine for windows form, one in open source is in mind...
diligent hands rule....
-
I plan to write a Windows Form app in C# with some complicated GUI to manage all kinds of components. looking for a Layout engine for windows form, one in open source is in mind...
diligent hands rule....
Is Windows Forms a requirement? From what little I remember about WPF it has its own layout engines. I might be mistaken though, I'm learning Python just to not get back and relearn C#.
GCS d--(d-) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
-
I plan to write a Windows Form app in C# with some complicated GUI to manage all kinds of components. looking for a Layout engine for windows form, one in open source is in mind...
diligent hands rule....
Your first, otherwise you would not ask. Learn docking. --edit Doesn't require an engine. Just requires you to learn.
Bastard Programmer from Hell :suss: "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
-
I plan to write a Windows Form app in C# with some complicated GUI to manage all kinds of components. looking for a Layout engine for windows form, one in open source is in mind...
diligent hands rule....
-
For many controls TableLayoutPanel(s) are good, for a small number of controls Splitcontainer(s) are better.
so far this TabLayoutPanel is my only choice. I play around with it: it can add more rows in run-time, so it basically fits my needs.
diligent hands rule....
-
Is Windows Forms a requirement? From what little I remember about WPF it has its own layout engines. I might be mistaken though, I'm learning Python just to not get back and relearn C#.
GCS d--(d-) s-/++ a C++++ U+++ P- L+@ E-- W++ N+ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
windows form is required for my case...
diligent hands rule....
-
windows form is required for my case...
diligent hands rule....
Using panels and docking will be your friend. WinForms is easy to use and is very good when you need to build complicated forms. It just is not so good when your form can be resized, which is not a problem for desktop applications For real desktop applications it will remain my choice, anyday
-
I plan to write a Windows Form app in C# with some complicated GUI to manage all kinds of components. looking for a Layout engine for windows form, one in open source is in mind...
diligent hands rule....