简体   繁体   中英

what is the best way to bind ListView (WPF) with same icon for each item

I have a list view that is binded to some object I've created. The binding is working perfect, but I want to add icon to each item in my list. All the items should have the SAME icon (should be defined prior as "file.ico"). What is the best to implement this? Thanks.

Use an ItemTemplate , eg:

<ListBox ItemsSource="{Binding MyItems}">
   <ListBox.ItemTemplate>
      <DataTemplate>           
         <Grid>
            <Grid.ColumnDefinitions>
               <ColumnDefinition Width="Auto" />
               <ColumnDefinition Width="*" />
            </Grid.ColumnDefinitions>
            <Image Grid.Column="0" Source="/Images/.." Width=".." Height=".." />
            <TextBlock Grid.Column="1" Text="{Binding Name}" />
         </Grid>
      </DataTemplate>
   </ListBox.ItemTemplate>
</ListBox>

You should use a ListBox unless you have a specific reason to use a ListView .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM