This commit is contained in:
Jeffrey Ye 2019-04-17 22:08:48 -07:00
Родитель 31b6ead956
Коммит fb50ad16e6
2 изменённых файлов: 16 добавлений и 27 удалений

Просмотреть файл

@ -1,23 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ICSharpCode.ILSpy.Controls.ResourceObjectTable">
<UserControl xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="ICSharpCode.ILSpy.Controls.ResourceObjectTable">
<Grid Margin="5,0,0,0">
<Grid.RowDefinitions>
<RowDefinition Height="30" />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Margin="5" Text="Other Resources (Name/ Value/ Type)"
FontFamily="Segoe UI"
FontWeight="Bold"
FontSize="12" />
<DataGrid Name="resourceListView"
FontFamily="Segoe UI"
FontSize="9"
Grid.Row="1"
RowBackground="White"
AlternatingRowBackground="Beige"
CanUserResizeColumns="True">
<TextBlock Margin="5" Text="Other Resources (Name/ Value/ Type)" FontFamily="Segoe UI" FontWeight="Bold" FontSize="12" />
<DataGrid Name="resourceListView" FontFamily="Segoe UI" FontSize="9" Grid.Row="1" RowBackground="{DynamicResource ThemeBackgroundBrush}" AlternatingRowBackground="{DynamicResource ThemeAccentBrush4}" CanUserResizeColumns="True">
<DataGrid.Columns>
<DataGridTextColumn Header="Key" Binding="{Binding Key}" Width="*" />
<DataGridTextColumn Header="Value" Binding="{Binding Value}" Width="*" />

Просмотреть файл

@ -15,8 +15,8 @@
FontFamily="Segoe UI"
FontSize="9"
Grid.Row="1"
RowBackground="White"
AlternatingRowBackground="Beige"
RowBackground="{DynamicResource ThemeBackgroundBrush}"
AlternatingRowBackground="{DynamicResource ThemeAccentBrush4}"
CanUserResizeColumns="True">
<DataGrid.Columns>
<DataGridTextColumn Header="Key" Binding="{Binding Key}" Width="*" />