16 references to Star
Microsoft.Maui (1)
Layouts\GridLayoutManager.cs (1)
151
new Definition(GridLength.
Star
)
Microsoft.Maui.Controls (10)
ColumnDefinition.cs (1)
10
public static readonly BindableProperty WidthProperty = BindableProperty.Create(nameof(Width), typeof(GridLength), typeof(ColumnDefinition), GridLength.
Star
,
Internals\ProfilePage.cs (1)
127
new ColumnDefinition { Width = GridLength.
Star
},
Layout\AndExpandLayoutManager.cs (4)
55
ColumnDefinitions = new ColumnDefinitionCollection { new ColumnDefinition { Width = GridLength.
Star
} },
72
grid.RowDefinitions.Add(new RowDefinition { Height = GridLength.
Star
});
92
RowDefinitions = new RowDefinitionCollection { new RowDefinition { Height = GridLength.
Star
} },
109
grid.ColumnDefinitions.Add(new ColumnDefinition { Width = GridLength.
Star
});
RadioButton\RadioButton.cs (1)
471
new ColumnDefinition { Width = GridLength.
Star
}
RowDefinition.cs (1)
10
public static readonly BindableProperty HeightProperty = BindableProperty.Create(nameof(Height), typeof(GridLength), typeof(RowDefinition), GridLength.
Star
,
Shell\BaseShellItem.cs (1)
435
columnDefinitions.Add(new ColumnDefinition { Width = GridLength.
Star
});
TitleBar\TitleBar.cs (1)
347
new ColumnDefinition(GridLength.
Star
), // Content
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\GridLengthTypeConverter.cs (1)
29
yield return Create(Ldsfld, module.ImportFieldReference(context.Cache, ("Microsoft.Maui", "Microsoft.Maui", "GridLength"), nameof(GridLength.
Star
), isStatic: true));
Microsoft.Maui.Controls.Foldable (4)
TwoPaneView.cs (4)
86
= BindableProperty.Create("Pane1Length", typeof(GridLength), typeof(TwoPaneView), defaultValue: GridLength.
Star
, propertyChanged: TwoPaneViewLayoutPropertyChanged);
90
= BindableProperty.Create("Pane2Length", typeof(GridLength), typeof(TwoPaneView), defaultValue: GridLength.
Star
, propertyChanged: TwoPaneViewLayoutPropertyChanged);
475
rowTop.Height = GridLength.
Star
;
485
columnLeft.Width = GridLength.
Star
;