30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<Window
|
|
x:Class="PMSWPF.Views.PlcListView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
xmlns:local="clr-namespace:PMSWPF.Views"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:vm="clr-namespace:PMSWPF.ViewModels"
|
|
Title="PlcListView"
|
|
Width="800"
|
|
Height="450"
|
|
d:DataContext="{d:DesignInstance vm:PlcListViewModel}"
|
|
mc:Ignorable="d">
|
|
<StackPanel>
|
|
<StackPanel Height="auto" />
|
|
<DataGrid
|
|
AutoGenerateColumns="False"
|
|
CanUserAddRows="True"
|
|
CanUserDeleteRows="True"
|
|
ItemsSource="{Binding PlcList}">
|
|
<DataGrid.Columns>
|
|
<DataGridTextColumn Binding="{Binding Path=Name}" Header="名称" />
|
|
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
|
|
</StackPanel>
|
|
</Window>
|