AddDevice.xaml 1.0 KB

123456789101112131415161718192021
  1. <Window x:Class="DeviceCenter.AddDevice"
  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">
  9. <Grid>
  10. <ListView x:Name="listView" HorizontalAlignment="Left" Height="193" Margin="79,86,0,0" VerticalAlignment="Top" Width="266" >
  11. <ListView.View>
  12. <GridView>
  13. <GridViewColumn Header="Name" Width="120" DisplayMemberBinding="{Binding Name}" />
  14. <GridViewColumn Header="Age" Width="50" DisplayMemberBinding="{Binding Age}" />
  15. <GridViewColumn Header="Mail" Width="150" DisplayMemberBinding="{Binding Mail}" />
  16. </GridView>
  17. </ListView.View>
  18. </ListView>
  19. </Grid>
  20. </Window>