无废话WPF系列9: Binding的源

简介:

1. 绑定到其它元素

1
2
3
4
5
6
< Grid >
     < StackPanel >
         < TextBox  x:Name="textbox1" />
         < Label  Content="{Binding ElementName=textbox1, Path=Text}" />
     </ StackPanel >
</ Grid >
 

2. 绑定到静态资源

1
2
3
4
5
6
7
8
9
< Window.Resources >
         < ContentControl  x:Key="text">Hello, World!</ ContentControl >
</ Window.Resources >
< Grid >
     < StackPanel >
         < Label  x:Name="label1" Content="{Binding Source={StaticResource text}}" />
     </ StackPanel >
</ Grid >
< strong >3. 绑定到自身</ strong >
1
2
3
4
5
< Grid >
     < StackPanel >
         < Label  x:Name="label1" Content="{Binding RelativeSource={RelativeSource Self}, Path=Name}" />
     </ StackPanel >
</ Grid >

4. 绑定到指定类型的父元素

1
2
3
4
5
6
< Grid  x:Name="Grid1">
         < StackPanel >
             < Label  x:Name="label1" Content="{Binding RelativeSource={RelativeSource FindAncestor,
                 AncestorType={x:Type Grid}}, Path=Name}" />
         </ StackPanel >
</ Grid >

 

5. 绑定到对象 

1
2
3
4
5
public  class  Person
    {
        public  string  Name { get ; set ; }
        public  int  Age { get ; set ; }
    }
1
2
3
4
5
6
7
8
< StackPanel  x:Name="stackPanel">
         < StackPanel.DataContext >
             < local:Person  Name="Jack" Age="30"></ local:Person >
         </ StackPanel.DataContext >
         < TextBlock   Text="{Binding Path=Name}"></ TextBlock >
         < TextBlock  Text="{Binding Path=Age}"></ TextBlock >       
 
</ StackPanel >

6. 绑定到集合

1
2
3
4
5
6
7
8
public  class  Person
     {
         public  string  Name { get ; set ; }
         public  int  Age { get ; set ; }
     }
 
     public  class  PersonList : ObservableCollection<Person>
     { }
1
2
3
4
5
6
7
8
9
10
11
< Window.Resources >
        < local:PersonList  x:Key="person">
            < local:Person  Name="Jack" Age="30"></ local:Person >
            < local:Person  Name="Tom" Age="32"></ local:Person >
        </ local:PersonList >
    </ Window.Resources >
    < StackPanel  x:Name="stackPanel">
        < ListBox   ItemsSource="{Binding Source={StaticResource ResourceKey=person}}"
                   DisplayMemberPath="Name">           
        </ ListBox >
</ StackPanel >

 

7. DataContext共享源

我们需要将同一资源绑定到多个 UI 元素上,很显然到处写 "{Binding Source={StaticResource person}}" 是件很繁琐且不利于修改的做法。WPF 提供了一个称之为 "数据上下文 (DataContext)" 的东西让我们可以在多个元素上共享一个源对象,只需将其放到父元素 DataContext 属性即可。当我们不给 Binding 扩展标志指定 Source 属性时,它会自动寻找上级父元素的数据上下文。

1
2
3
4
5
6
7
8
9
10
11
< Window.Resources >
         < local:PersonList  x:Key="person">
             < local:Person  Name="Jack" Age="30"></ local:Person >
             < local:Person  Name="Tom" Age="32"></ local:Person >
         </ local:PersonList >
     </ Window.Resources >
     < StackPanel  x:Name="stackPanel" DataContext="{StaticResource person}">
         < ListBox   ItemsSource="{Binding}"
                    DisplayMemberPath="Name">           
         </ ListBox >
     </ StackPanel >

 

8. 使用XML作为Binding的源

XML:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<? xml  version="1.0" encoding="utf-8" ?>
< PersonList >
   < Person  Id="1">
     < Name >Jack</ Name >
   </ Person >
   < Person  Id="2">
     < Name >Tom</ Name >
   </ Person >
   < Person  Id="3">
     < Name >Justin</ Name >
   </ Person >
   < Person  Id="4">
     < Name >David</ Name >
   </ Person >
</ PersonList >

XAML:

1
2
3
4
5
6
7
8
9
10
11
12
13
< StackPanel >
        < ListView  x:Name="personListView">
            < ListView.View >
                < GridView >
                    < GridViewColumn  Header="Id" Width="100"
                                     DisplayMemberBinding="{Binding XPath=@Id}"/>
                    < GridViewColumn  Header="Name" Width="100"
                                     DisplayMemberBinding="{Binding XPath=Name}"/>
                </ GridView >
            </ ListView.View >
        </ ListView >   
        < Button  Click="Button_Click">Load Data</ Button >
    </ StackPanel >

后台代码:

1
2
3
4
5
6
7
8
9
10
11
12
private  void  Button_Click( object  sender, RoutedEventArgs e)
         {
             XmlDocument xmlDocument = new  XmlDocument();
             xmlDocument.Load( "Person.xml" );
 
             XmlDataProvider xdp = new  XmlDataProvider();
             xdp.Document = xmlDocument;
             xdp.XPath = @"/PersonList/Person" ;
 
             this .personListView.DataContext = xdp;
             this .personListView.SetBinding(ListView.ItemsSourceProperty, new  Binding());
         }

image


本文转自敏捷的水博客园博客,原文链接http://www.cnblogs.com/cnblogsfans/archive/2011/02/19/1958586.html如需转载请自行联系原作者


王德水

相关文章
|
C#
WPF中Binding使用StringFormat格式化字符串方法
原文:WPF中Binding使用StringFormat格式化字符串方法 货币格式 // $123.46 货币格式,一位小数 // $123.5 前文字 //单价:$123.
2327 0
|
存储 自然语言处理 C#
WPF技术之Binding
WPF(Windows Presentation Foundation)是微软推出的一种用于创建应用程序用户界面的框架。Binding(绑定)是WPF中的一个重要概念,它用于在界面元素和数据源之间建立关联。通过Binding,可以将界面元素(如文本框、标签、列表等)与数据源(如对象、集合、属性等)进行绑定,从而实现数据的双向传递和同步更新。
306 2
WPF技术之Binding
WPF-Binding问题-模板样式使用Binding TemplatedParent与TemplateBinding区别
WPF-Binding问题-模板样式使用Binding TemplatedParent与TemplateBinding区别
266 0
|
C#
WPF QuickStart系列之数据绑定(Data Binding)
原文:WPF QuickStart系列之数据绑定(Data Binding) 这篇博客将展示WPF DataBinding的内容。 首先看一下WPF Data Binding的概览, Binding Source可以是任意的CLR对象,或者XML文件等,Binding Target需要有依赖属性。
1253 0
|
C#
解答WPF中ComboBox SelectedItem Binding不上的Bug
原文:解答WPF中ComboBox SelectedItem Binding不上的Bug 正在做一个打印机列表,从中选择一个打印机(System.Printing) var printServer = new LocalPrintServer(); PrintQueues = printServer.
1025 0
|
C#
WPF Binding Mode,UpdateSourceTrigger
原文:WPF Binding Mode,UpdateSourceTrigger WPF 绑定模式(mode) 枚举值有5个1:OneWay(源变就更新目标属性)2:TwoWay(源变就更新目标并且目标变就更新源)3:OneTime(只根据源来设置目标,以后都不会变)4:OneWayToSource...
1575 0
|
C# .NET 开发框架
WPF笔记 ( xmlns引用,Resource、Binding 前/后台加载,重新绑定) 2013.6.7更新
原文:WPF笔记 ( xmlns引用,Resource、Binding 前/后台加载,重新绑定) 2013.6.7更新 1、xmlns Mapping URI的格式是 clr-namespace:[;assembly=] (1)如果自定义类和XAML处在同一个Assembly之中,只还需要提供clr-namespace值。
1457 0
|
C# 数据格式 XML
【WPF】动态设置Binding的ConverterParameter转换器参数
原文:【WPF】动态设置Binding的ConverterParameter转换器参数 问题:XAML中,想要在一个Bingding语句中再次Bingding。
4642 0
|
C#
WPF的Binding学习笔记(一)
一、binding的一般步骤1,准备数据源    数据源需要实现INotifyPropertyChanged接口    例如: class Person : INotifyPropertyChanged {   public event PropertyChangedEventHandle...
745 0