18 references to Star
PresentationFramework (18)
MS\Internal\PtsHost\TableParaClient.cs (3)
1968
case (GridUnitType.
Star
):
2047
Debug.Assert(_calculatedColumns[i].UserWidth.GridUnitType == GridUnitType.Auto || _calculatedColumns[i].UserWidth.GridUnitType == GridUnitType.
Star
|| _calculatedColumns[i].UserWidth.GridUnitType == GridUnitType.Pixel, "Unexpected GridUnitType");
2069
_calculatedColumns[i].UserWidth = new GridLength(iP, GridUnitType.
Star
);
System\Windows\Controls\BorderGapMaskConverter.cs (2)
90
colDef3.Width = new GridLength(1, GridUnitType.
Star
);
97
rowDef2.Height = new GridLength(1, GridUnitType.
Star
);
System\Windows\Controls\ColumnDefinition.cs (1)
1027
new GridLength(1.0, GridUnitType.
Star
),
System\Windows\Controls\Grid.cs (1)
1112
case (GridUnitType.
Star
):
System\Windows\Controls\GridSplitter.cs (3)
842
SetDefinitionLength(definition, new GridLength(definition1Pixels, GridUnitType.
Star
));
846
SetDefinitionLength(definition, new GridLength(definition2Pixels, GridUnitType.
Star
));
850
SetDefinitionLength(definition, new GridLength(GetActualLength(definition), GridUnitType.
Star
));
System\Windows\Controls\RowDefinition.cs (1)
1027
new GridLength(1.0, GridUnitType.
Star
),
System\Windows\Controls\ScrollViewer.cs (2)
2705
gridColumn1.SetValue(ColumnDefinition.WidthProperty, new GridLength(1.0, GridUnitType.
Star
));
2707
gridRow1.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.
Star
));
System\Windows\Documents\TableColumn.cs (1)
199
if ((gridLength.GridUnitType == GridUnitType.Pixel || gridLength.GridUnitType == GridUnitType.
Star
) &&
System\Windows\GridLength.cs (2)
102
&& type != GridUnitType.
Star
)
200
public bool IsStar { get { return (_unitType == GridUnitType.
Star
); } }
System\Windows\GridLengthConverter.cs (1)
216
case (GridUnitType.
Star
):
System\Windows\Markup\XamlGridLengthSerializer.cs (1)
241
&& unit is GridUnitType.Auto or GridUnitType.
Star
)