WPF学习笔记——ListBox用ItemsSource绑定数据源
Posted 灵大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF学习笔记——ListBox用ItemsSource绑定数据源相关的知识,希望对你有一定的参考价值。
<Grid> <ListBox x:Name="Lst"> <ListBox.ItemTemplate> <DataTemplate> <Button MouseDoubleClick="Button_MouseDoubleClick"> <Grid> <Image Source="{Binding Path=BackGround}" /> <TextBlock Text="{Binding Path=Name}" Margin="70 10" FontSize="18"></TextBlock> </Grid> </Button> </DataTemplate> </ListBox.ItemTemplate> </Grid>
以上是关于WPF学习笔记——ListBox用ItemsSource绑定数据源的主要内容,如果未能解决你的问题,请参考以下文章
wpf 中scrollviewer 中放置个LISTBOX,当焦点在LISTBOX时候,滚动鼠标不响应Scrollviewer的鼠标滚动