MainWindow.xaml 1.1 KB

123456789101112131415161718192021
  1. <Window x:Class="DeviceCenter.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:DeviceCenter"
  7. mc:Ignorable="d"
  8. Title="设备中心" Height="450" Width="800" ResizeMode="NoResize" Closing="Window_Closing">
  9. <Grid>
  10. <ListView x:Name="lv_device" HorizontalAlignment="Left" Height="160" Margin="26,30,0,0" VerticalAlignment="Top" Width="298">
  11. <ListView.View>
  12. <GridView>
  13. <GridViewColumn Header="名称" Width="80" DisplayMemberBinding="{Binding name}" />
  14. <GridViewColumn Header="IP" Width="120" DisplayMemberBinding="{Binding ip}" />
  15. <GridViewColumn Header="状态" Width="50" DisplayMemberBinding="{Binding status}" />
  16. </GridView>
  17. </ListView.View>
  18. </ListView>
  19. </Grid>
  20. </Window>