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 0a32668 commit 4f44fa8Copy full SHA for 4f44fa8
Microsoft.Toolkit.Uwp.UI.Controls/GridSplitter/GridSplitter.Events.cs
@@ -194,6 +194,11 @@ private bool VerticalMove(double verticalChange)
194
// if sibling row has fixed width then resize it
195
else if (!IsStarRow(SiblingRow))
196
{
197
+ // Would adding to this column make the current column violate the MinWidth?
198
+ if (IsValidRowHeight(CurrentRow, verticalChange) == false)
199
+ {
200
+ return false;
201
+ }
202
if (!SetRowHeight(SiblingRow, verticalChange * -1, GridUnitType.Pixel))
203
204
return true;
0 commit comments