| 123456789101112131415161718192021 |
- <Window x:Class="DeviceCenter.MainWindow"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:DeviceCenter"
- mc:Ignorable="d"
- Title="设备中心" Height="450" Width="800" ResizeMode="NoResize" Closing="Window_Closing">
- <Grid>
- <ListView x:Name="lv_device" HorizontalAlignment="Left" Height="160" Margin="26,30,0,0" VerticalAlignment="Top" Width="298">
- <ListView.View>
- <GridView>
- <GridViewColumn Header="名称" Width="80" DisplayMemberBinding="{Binding name}" />
- <GridViewColumn Header="IP" Width="120" DisplayMemberBinding="{Binding ip}" />
- <GridViewColumn Header="状态" Width="50" DisplayMemberBinding="{Binding status}" />
- </GridView>
- </ListView.View>
- </ListView>
- </Grid>
- </Window>
|