I'm trying to make a simple two-panel file manager (such as Total Commander or FreeCommander). So basically just two listboxes/listviews, one on left, one on right.
But I have hard time trying to make it responsive, when user resizes window either from left side or right side. I need those listboxes to change accordingly on main window/form size, but not cover the other one in process.
I tried on both WPF and WinForms. In WinForms, there is just an Anchor property, which probably can't handle resizing on both up/down and left/right, or I don't know how.
In WPF I know there are tons of ways how to do this, but I don't understand XAML at all, so I'm stuck.
If anyone ever faces similar problem and managed to deal with it, or just has an idea, how to make it work, I would welcome any kind of help.