|
<ContentPage.Resources>
<OnPlatform
x:Key="FontFamilyName"
x:TypeArguments="x:String"
Android="OpenSans-Regular.ttf"
iOS="Samantha.ttf" />
<OnPlatform
x:Key="GridFontSize"
x:TypeArguments="x:Double"
Android="16"
iOS="12" />
</ContentPage.Resources>
<StackLayout Orientation="Vertical">
<sfgrid:SfDataGrid x:Name="sfGrid"
AutoGenerateColumns="False" HeaderRowHeight="70"
AllowSorting="True"
ColumnSizer="Star"
AllowDraggingRow="True"
AllowResizingColumn="True"
SelectionMode="Single"
AllowEditing="True"
NavigationMode="Cell"
ItemsSource="{Binding OrdersInfo}" >
<sfgrid:SfDataGrid.Columns x:TypeArguments="syncfusion:Columns">
<sfgrid:GridTextColumn HeaderText="Customer ID" LoadUIView="True"
MappingName="CustomerID"
HeaderFont="{StaticResource FontFamilyName}"
HeaderCellTextSize="{StaticResource GridFontSize}"
RecordFont="{StaticResource FontFamilyName}"
CellTextSize="{StaticResource GridFontSize}"/>
</sfgrid:SfDataGrid.Columns>
</sfgrid:SfDataGrid>
</StackLayout> |