You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Both
GridSplitterandContentSizerallow a control to be resized by the user. But when to use one or the other?When to use GridSplitter:
When the developer is trying to resize a grid-based layout (i.e., rows and columns)
RowDefinitionandColumnDefinitionpropertiesGridResizeBehaviorsuch as resizing scheme based onCurrentAndNextorPreviousAndNextrow and columnGridLengthmeasurement (IsAuto, IsStar, etc.)Where to use ContentSizer:
Anywhere else not utilizing a grid-based layout
A third option?
Implement your own control, by deriving from the base class,
SplitBase.