❔ TextBox stretching according to the window size
How do i make these textboxes autosize properly?
20 Replies
this should be the end result. it should change their width according to the widget width
also, the summary can be multi line, so it should modify its height to display the whole text properly
if the textbox is larger than the widget canvas, the widget must resize.
This looks like WPF to me which is out of my wheelhouse, but can you clarify for others if its WPF, WinForms, or something else?
Winforms
So its a custom control?
Yes
You'd have to use docking and panels
How can i dock a panel under another panel ?
Dock: top
the textbox wont resize
?
I dont think Dock will work here. You have to size your textbox manually and then use
Anchor
You probably need to set the anchor in all four directions, but i cannot tell 100% rnThis is with:
- 2 panels; dock =
top
- 1 label per panel; dock = left
, padding = 4, 4, 4, 4
- 1 textbox per panel; dock = fill
There are probably more efficient ways, but it is possible with dock.@tacosontitan
How do i make it autoresize?
If i enable autosize with GrowAndShrink, this it what is does
Is it set to dock fill?
Or Dock top?
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.