How to make the sider Bar resizable interactively? #2420
-
The use case includes the left side Bar with a Is there anything built-in for resizing the side bar interactively? If not, any suggestions on dealing with this? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
Not sure what you mean exactly. You could control the Bar width with the theme option. eg. private Theme theme = new Theme
{
BarOptions = new ThemeBarOptions
{
HorizontalHeight = "64px",
VerticalWidth = "300px",
},
}; Also, I never thought of combining TreeView with the Bar. I guess some CSS would be required to make it work properly. |
Beta Was this translation helpful? Give feedback.
-
Well, some time ago I started working on a Splitter component (#1366) but I wasn't very satisfied with the result so I abandoned it. |
Beta Was this translation helpful? Give feedback.
-
Poor man resizing is done with a slider showed/hidden by a command, lame but this does the trick for now. |
Beta Was this translation helpful? Give feedback.
-
I really hope that the interactively resided sider option will be built-in one day. |
Beta Was this translation helpful? Give feedback.
Not sure what you mean exactly. You could control the Bar width with the theme option. eg.
Also, I never thought of combining TreeView with the Bar. I guess some CSS would be required to make it work properly.