We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753832d commit 0a32668Copy full SHA for 0a32668
Microsoft.Toolkit.Uwp.UI.Controls/GridSplitter/GridSplitter.Events.cs
@@ -254,6 +254,12 @@ private bool HorizontalMove(double horizontalChange)
254
// if sibling column has fixed width then resize it
255
else if (!IsStarColumn(SiblingColumn))
256
{
257
+ // Would adding to this column make the current column violate the MinWidth?
258
+ if (IsValidColumnWidth(CurrentColumn, horizontalChange) == false)
259
+ {
260
+ return false;
261
+ }
262
+
263
if (!SetColumnWidth(SiblingColumn, horizontalChange * -1, GridUnitType.Pixel))
264
265
return true;
0 commit comments