Wpf控件ListBox使用实例2
生活随笔
收集整理的這篇文章主要介紹了
Wpf控件ListBox使用实例2
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2.Xaml綁定選擇結果
<StackPanel Orientation="Vertical"><TextBlock Margin="10,10,10,10" FontWeight="Bold"> Pick a color from below list</TextBlock><ListBox Name="mcListBox" Height="100" Width="100" Margin="10,10,0,0" HorizontalAlignment="Left" ><ListBoxItem>Orange</ListBoxItem><ListBoxItem>Green</ListBoxItem><ListBoxItem>Blue</ListBoxItem><ListBoxItem>Gray</ListBoxItem><ListBoxItem>LightGray</ListBoxItem><ListBoxItem>Red</ListBoxItem></ListBox><TextBox Height="23" Name="textBox1" Width="120" Margin="10,10,0,0" HorizontalAlignment="Left" ><TextBox.Text><Binding ElementName="mcListBox" Path="SelectedItem.Content"/></TextBox.Text></TextBox><Canvas Margin="10,10,0,0" Height="200" Width="200" HorizontalAlignment="Left"><Canvas.Background><Binding ElementName="mcListBox" Path="SelectedItem.Content"/></Canvas.Background></Canvas> </StackPanel>3.綁定ListBox.Templete 模板內容
/// <summary> /// List3.xaml 的交互邏輯 /// </summary> public partial class List3 : Window {public List3(){InitializeComponent();listBox.ItemsSource = new List<UserItem>() {new UserItem(1,"張三",true),new UserItem(2,"李四",false),new UserItem(3,"王五",false),new UserItem(4,"趙六",true)};}private void Button_MouseDoubleClick(object sender, MouseButtonEventArgs e){Button btn = sender as Button;if (btn != null){Image img = btn.FindName("img") as Image;if (img != null){MessageBox.Show(img.Source.ToString());}}} } public class UserItem {public UserItem(int ID, string Name, bool IsActive){this.ID = ID;this.Name = Name;this.IsActive = IsActive;}public int ID { get; set; }public string Name { get; set; }public bool IsActive { get; set; }public string BackGround{get {return this.IsActive? "/images/1.jpg": "/images/2.jpg";}} } View CodeXaml定義
<Grid><Grid.RowDefinitions><RowDefinition Height="33*"/><RowDefinition Height="236*"/></Grid.RowDefinitions><ListBox x:Name="listBox" Grid.Row="1" Margin="30"><ListBox.ItemTemplate><DataTemplate><Button MouseDoubleClick="Button_MouseDoubleClick"><Grid><Image x:Name="img" Source="{Binding Path=BackGround}" Width="50" Height="30"></Image><TextBlock Text="{Binding Path=Name}" Margin="70 10" FontSize="18" Foreground="Red" FontWeight="Bold"></TextBlock></Grid></Button></DataTemplate></ListBox.ItemTemplate></ListBox><Label x:Name="label" Content="List模板綁定" HorizontalAlignment="Left" Margin="21,6,0,0" VerticalAlignment="Top"/> </Grid>顯示結果:
?
總結
以上是生活随笔為你收集整理的Wpf控件ListBox使用实例2的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Mysql安装及自动化部署脚本方案
- 下一篇: C++ float的内存布局