-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
25 lines (21 loc) · 1.32 KB
/
App.xaml
File metadata and controls
25 lines (21 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8" ?>
<Application x:Class="MaApp.App"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit">
<Application.Resources>
<ResourceDictionary>
<!-- Styles --><!--
<dg:DataGridStyle x:Key="DataGridDefaultStyle" RowBackground="#222222" AlternateRowBackground="#303030" HeaderRowBackground="#343434"
SelectionBackground="Gray" RowTextColor="#CCCCCC" CurrentCellBorderColor="WhiteSmoke" GridLineColor="#434343"
SelectedRowTextColor="#4CC2FF" HeaderRowFontAttributes="Bold" HeaderRowTextColor="WhiteSmoke"/>
<Style TargetType="dg:SfDataGrid">
--><!--<Setter Property="DefaultStyle" Value="{StaticResource DataGridDefaultStyle}"/>--><!--
<Setter Property="AutoGenerateColumnsMode" Value="None"/>
<Setter Property="AllowTriStateSorting" Value="True"/>
<Setter Property="ColumnWidthMode" Value="Auto"/>
</Style>-->
</ResourceDictionary>
</Application.Resources>
</Application>