mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-12-11 20:12:32 +00:00
3ac026aa8f
TODO: Path menu Injection Logic SHould be done then i guess also fuck spiders
25 lines
1.3 KiB
XML
25 lines
1.3 KiB
XML
<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.KeyFrame.TKFrame"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:UWUVCI_AIO_WPF.UI.Frames.KeyFrame"
|
|
mc:Ignorable="d"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
d:DesignHeight="480" d:DesignWidth="1130"
|
|
Title="NDSFrame">
|
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
|
<DataGrid Background="Transparent" AutoGenerateColumns="False" ItemsSource="{Binding Ltemp}" CanUserAddRows="False" CanUserDeleteRows="False" CanUserSortColumns="False" CanUserReorderColumns="False" SelectedItem="{Binding GbTemp}" MouseDoubleClick="DataGrid_MouseDoubleClick" IsReadOnly="True">
|
|
<DataGrid.Columns>
|
|
<DataGridTextColumn Header="Name" Binding="{Binding Name}"/>
|
|
<DataGridTextColumn Header="Region" Binding="{Binding Region}"/>
|
|
<DataGridTextColumn Header="Title ID" Binding="{Binding Tid}"/>
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
</Page>
|