CustomViewTest.xaml 993 B

123456789101112131415161718192021
  1. <Window x:Class="Test.CustomViewTest"
  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:wpf="http://schemas.FWind/xaml"
  7. mc:Ignorable="d"
  8. Title="CustomViewTest" Height="450" Width="800">
  9. <Grid >
  10. <!--<Image Source=".\Images\background.jpg" ></Image>-->
  11. <ListView Background="Beige" x:Name="ListView">
  12. <ListView.View>
  13. <wpf:ImageView ToolTipBinding="{Binding Path=Display,Mode=OneWay}" DisplayBinding="{Binding ToolTip}" ImageBinding="{Binding ImagePath}">
  14. </wpf:ImageView>
  15. </ListView.View>
  16. <!--<ListViewItem Content="ccc"></ListViewItem>
  17. <ListViewItem Content="bbb"></ListViewItem>-->
  18. </ListView>
  19. </Grid>
  20. </Window>