网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > .Net编程 > 正文

WPF一些容易忘记的控件属性

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

1、ListBox:
1>listbox获取静态的Fonts.SystemFontFamilies属性,TextBox绑定SelectedItem。点击listbox选中项时,textbox改变字体

  1. <ListBox Grid.Row="0" ItemsSource="{x:Static Fonts.SystemFontFamilies}" Margin="5" Name="lstFonts"/> 
  2.    <TextBox   
  3.            FontFamily="{Binding ElementName=lstFonts, Path=SelectedItem}" 
  4.            TextAlignment="Center" TextWrapping="Wrap"> 
  5.         The quick brown fox jumps over the lazy dog 
  6.       </TextBox> 

2>在listBox1_SelectionChanged事件里面选中的是里面的整个子控件,所以需要

  1. <ListBox  Name="listBox1" Width="120" Height="52"  SelectionChanged="listBox1_SelectionChanged" > 
  2. <ListBoxItem Tag="Red">Red</ListBoxItem> 
  3. <ListBoxItem Tag="Yellow">Yellow</ListBoxItem> 
  4. <ListBoxItem>Blue</ListBoxItem> 
  5. </ListBox> 
  6.  ((ListBoxItem)listBox1.SelectedItem).Content;//可以获取里面的内容:Red,Yellow,Blue。 
  7.  ((ListBoxItem)listBox1.SelectedItem).Tag//,可以获取Tag值。 
  8. <TextBlock Name="textBlock1" Foreground="{Binding ElementName=listBox1,Path=SelectedItem.Content}"  />;//用于绑定内容,改变textblock的颜色。 
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师