24 lines
941 B
Plaintext
24 lines
941 B
Plaintext
|
<UserControl xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:vm="using:StarsAssistant.ViewModels"
|
||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||
|
x:Class="StarsAssistant.Views.BuColView"
|
||
|
x:DataType="vm:BuColViewModel">
|
||
|
|
||
|
|
||
|
<DataGrid x:Name="PlanetsGrid"
|
||
|
ItemsSource="{Binding Planets}"
|
||
|
IsReadOnly="True"
|
||
|
GridLinesVisibility="All"
|
||
|
FrozenColumnCount="1"
|
||
|
BorderThickness="1" BorderBrush="Gray">
|
||
|
<DataGrid.Columns>
|
||
|
<DataGridTextColumn Header="Planet" Binding="{Binding Name}" />
|
||
|
<DataGridTextColumn Header="Value" Binding="{Binding Value}" />
|
||
|
</DataGrid.Columns>
|
||
|
</DataGrid>
|
||
|
|
||
|
</UserControl>
|