婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > WPF的數據綁定詳細介紹

WPF的數據綁定詳細介紹

熱門標簽:山東防封電銷卡辦理套餐 泰州手機外呼系統軟件 杭州智能電話機器人 內蒙古智能電銷機器人哪家強 地圖標注位置多的錢 怎樣在地圖標注消火栓圖形 廈門四川外呼系統 百度地圖標注點擊事件 濟源人工智能電話機器人價格

一、WPF數據綁定的概要

數據綁定:是應用程序 UI 與業務邏輯之間建立連接的過程。 如果綁定正確設置并且數據提供正確通知,則當數據的值發生更改時,綁定到數據的視覺元素會自動反映更改。 數據綁定可能還意味著如果視覺元素中數據的外部表現形式發生更改,則基礎數據可以自動更新以反映更改。

例如:如果用戶編輯 TextBox 元素中的值,則基礎數據值會自動更新以反映該更改。

1. 數據綁定涉及到兩個方面:

一個是綁定源,一個是綁定目標。綁定源即控件綁定所使用的源數據,綁定目標即數據顯示的控件。

2. 對于綁定源,在WPF可以是以下四種:

•CLR對象:可以綁定到CLR類的公開的屬性、子屬性、索引器上。
•ADO.Net對象:例如DataTable、DataView等 。
•XML文件:使用XPath進行解析 。
•DependencyObject:綁定到其依賴項屬性上,即控件綁定控件 。
對于綁定目標,必須是WPF中的DependencyObject,將數據綁定到其依賴項屬性上。

二、      綁定的模式

1.  根據數據流的方向,WPF中的數據綁定分為以下四種:

OneWay 綁定:對源屬性的更改會自動更新目標屬性,但是對目標屬性的更改不會傳播回源屬性。此綁定類型適用于綁定的控件為隱式只讀控件的情況。

TwoWay 綁定:對源屬性的更改會自動更新目標屬性,而對目標屬性的更改也會自動更新源屬性。此綁定類型適用于可編輯窗體或其他完全交互式 UI 方案 。

OneWayToSource 與 OneWay 相反;它在目標屬性更改時更新源屬性。

OneTime綁定:該綁定會導致源屬性初始化目標屬性,但不傳播后續更改。

注釋:如果無需監視目標屬性的更改,則使用 OneWay 綁定模式可避免 TwoWay 綁定模式的系統開銷。

大多數屬性都默認為 OneWay 綁定,但是一些依賴項屬性,通常為用戶可編輯的控件的屬性,如 TextBox 的 Text 屬性和 CheckBox 的 IsChecked 屬性,默認為 TwoWay 綁定。

如果要知道依賴項屬性綁定在默認情況下是單向還是雙向的編程方法可使用 GetMetadata 獲取屬性的屬性元數據,然后檢查 BindsTwoWayByDefault 屬性的布爾值。

示例代碼:

復制代碼 代碼如下:

Page x:Class="WpfDemo.Page1"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="Page1" HorizontalAlignment="Center">

        Grid Name="GridTable" Height="360" Background="Silver">

            Grid.RowDefinitions>

                RowDefinition>/RowDefinition>

                RowDefinition>/RowDefinition>

                RowDefinition>/RowDefinition>

                RowDefinition>/RowDefinition>

            /Grid.RowDefinitions>

            Grid.ColumnDefinitions>

            ColumnDefinition Width="130">/ColumnDefinition>

            ColumnDefinition Width="150">/ColumnDefinition>

            ColumnDefinition Width="20">/ColumnDefinition>

            /Grid.ColumnDefinitions>

        Label Width="130" Height="25"  Grid.Row="0" Grid.Column="0"  Name="label1">TwoWay/Label>

        TextBox Width="150" Height="25"  Grid.Row="0" Grid.Column="1"  Name="textBox4" Text="{Binding ElementName=scrollBar1,Path=Value,Mode=TwoWay}" />

        Label Width="130" Height="25"  Grid.Row="1" Grid.Column="0"  Name="label2">OneWay/Label>

        TextBox Width="150" Height="25"  Grid.Row="1" Grid.Column="1"   Name="textBox1" Text="{Binding ElementName=scrollBar1, Path=Value,Mode=OneWay}"/>

        Label Width="130" Height="25"  Grid.Row="2" Grid.Column="0"  Name="label3">OneWayToSource/Label>

        TextBox Width="150" Height="25"  Grid.Row="2" Grid.Column="1"   Name="textBox2" Text="{Binding ElementName=scrollBar1, Path=Value,Mode=OneWayToSource}" />

        Label Width="130" Height="25"  Grid.Row="3" Grid.Column="0"  Name="label4">OneTime/Label>

        TextBox Width="150" Height="25"  Grid.Row="3" Grid.Column="1"   Name="textBox3" Text="{Binding ElementName=scrollBar1, Path=Value,Mode=OneTime}"/>

         ScrollBar Value="30" Minimum="0" Grid.RowSpan="4" Grid.Row="0" Grid.Column="2" Maximum="100" Name="scrollBar1" Width="18" Height="{Binding ElementName=GridTable,Path=Height}" />

        /Grid>

/Page>


根據程序執行結果,我們可以得到以下結論:

對于OneWay綁定:在界面中顯示的數據可以隨數據源的值的變化而變化,但更改界面的數據不會影響到數據源。

對于TwoWay綁定:界面中顯示的數據及數據源的數據可以雙向顯示及更新。

對于OneWayToSource綁定:初始時界面的數據為空;更改界面的數據可以影響數據源的值,但是更改數據源的值不會體現在界面上。

對于OneTime綁定:在界面中顯示的為數據源的初始值,更改數據源的值的時候,不會更改界面的數據顯示;更改界面的數據也不會影響到數據源的數據。

三、綁定目標值影響綁定源值條件

問題:綁定源的值是在您編輯文本的同時進行更新,還是在您結束編輯文本并將鼠標指針從文本框移走后才進行更新呢?或者在您需要更新的情況下在手動的更新呢?

1. UpdateSourceTrigger 屬性是確定觸發源更新的原因。

下圖中右箭頭的點演示 UpdateSourceTrigger 屬性的角色:

TwoWay及OneWayToSource是由綁定目標到綁定源方向,若實現綁定目標的值更改影響綁定源的值方式,只需要設置相應控件綁定時的UpdateSourceTrigger的值,其值有三種:

PropertyChanged:當綁定目標屬性更改時,立即更新綁定源。

LostFocus:當綁定目標元素失去焦點時,更新綁定源。

Explicit:僅在調用 UpdateSource 方法時更新綁定源。

注釋:多數依賴項屬性的UpdateSourceTrigger 值的默認值為 PropertyChanged,而 Text 屬性的默認值為 LostFocus。

2. 示例

復制代碼 代碼如下:

XAML:

 


Page x:Class="WpfDemo.Changed"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="Changed">

    Grid Name="GridTable" Height="250" Background="Silver" Width="350">

        Grid.RowDefinitions>

            RowDefinition>/RowDefinition>

            RowDefinition>/RowDefinition>

            RowDefinition>/RowDefinition>

            RowDefinition>/RowDefinition>

        /Grid.RowDefinitions>

        Grid.ColumnDefinitions>

            ColumnDefinition Width="100">/ColumnDefinition>

            ColumnDefinition Width="150">/ColumnDefinition>

            ColumnDefinition Width="100">/ColumnDefinition>

        /Grid.ColumnDefinitions>

        TextBlock Grid.Row="0" Width="90" Height="25" Grid.Column="0" Name="label1" Text="PropertyChanged:">/TextBlock>

        TextBlock Grid.Row="1"  Width="90" Height="25" Grid.Column="0" Name="label2" Text="LostFocus:">/TextBlock>

        TextBlock Grid.Row="2"  Width="90" Height="25" Grid.Column="0" Name="label3" Text="Explicit:">/TextBlock>

        TextBox Grid.Row="0" Width="150" Height="25" Text="{Binding Path=UserName,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}"  Grid.Column="1" Name="TextBox1" />

        TextBox Grid.Row="1" Width="150" Height="25" Text="{Binding Path=UserName,Mode=TwoWay,UpdateSourceTrigger=LostFocus}"   Grid.Column="1"  Name="TextBox2" />

        TextBox Grid.Row="2" Width="150" Height="25" Text="{Binding Path=UserName,Mode=TwoWay,UpdateSourceTrigger=Explicit}"   Grid.Column="1"  Name="txtExplicit" />

        TextBlock Grid.Row="3" Width="90" Height="25"  Grid.Column="0" Name="lblResult" Text="結果:">/TextBlock>

        TextBlock Grid.Row="3" Width="90" Height="25"  Grid.Column="1" Name="lblDisplay" Text="{Binding Path=UserName,Mode=OneWay}">/TextBlock>

        Button Name="btnChanged" Width="90" Height="25" Grid.Row="3" Grid.Column="2">Explicit/Button>

    /Grid>

/Page>


復制代碼 代碼如下:

C#:


namespace WpfDemo

{

    public partial class Changed : Page

    {

        #region properties

        public UserModel CurrentUser

        {

            get;set;

        }

        #endregion

        #region Constructor

        public Changed()

        {

            InitializeComponent();

            this.Loaded += new RoutedEventHandler(Changed_Loaded);

            this.btnChanged.Click += new RoutedEventHandler(btnChanged_Click);

        }

        #endregion

        #region Changed_Loaded

        void Changed_Loaded(object sender, RoutedEventArgs e)

        {

            this.CurrentUser = new UserModel() {UserName="swd"};

            this.DataContext = this.CurrentUser;

        }

        #endregion

        #region btnLogon_Click

        void btnChanged_Click(object sender, RoutedEventArgs e)

        {

          this.txtExplicit.GetBindingExpression(TextBox.TextProperty).UpdateSource();

        }

        #endregion

    }

    public class UserModel

    {

        public string UserName

        {

            get;set;}

    }

}


程序執行結果如上所述。


四、      數據提供程序

1. XmlDataProvider:

XmlDataProvider訪問 XML 數據的方式有以下三種:

可以使用 XmlDataProvider 類嵌入內聯 XML 數據。

可以將 Source 屬性設置為 XML 數據文件的 Uri。

可以將 Document 屬性設置為 XmlDocument。

注釋:當 XmlDocument.NodeChanged 事件發生時,XmlDataProvider 執行所有綁定的完全刷新。 特定節點不進行優化。

默認情況下,XmlDataProvider.IsAsynchronous 屬性設置為 true,表示默認情況下 XmlDataProvider 檢索數據并異步生成 XML 節點的集合。

以下將介紹使用上面所述的三種方式顯示xml數據:

示例

復制代碼 代碼如下:

Xaml:


Page x:Class="WpfDemo.xmlBinding"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="xmlBinding" xmlns:local="clr-namespace:WpfDemo">

    Page.Resources>

        XmlDataProvider x:Key="XmlFile" Source="Students.xml" XPath="/Students">/XmlDataProvider>

        XmlDataProvider x:Key="InnerXmlStu" XPath="/Students">

            x:XData>

                Students xmlns="">

                    Student>name>swd/name>/Student>

                    Student>name>awd/name>/Student>

                    Student>name>asd/name>/Student>

                /Students>

            /x:XData>

        /XmlDataProvider>

    /Page.Resources>

    Grid>

        Grid.RowDefinitions>

            RowDefinition>/RowDefinition>

            RowDefinition>/RowDefinition>

            RowDefinition>/RowDefinition>

        /Grid.RowDefinitions>

        Grid.ColumnDefinitions>

            ColumnDefinition Width="100">/ColumnDefinition>

            ColumnDefinition Width="150">/ColumnDefinition>

        /Grid.ColumnDefinitions>

        TextBlock Grid.Row="0" Grid.Column="0"  Height="25" Width="100"  Text="引用XML文件">/TextBlock>

        TextBlock Grid.Row="1" Grid.Column="0" Height="25" Width="100"   Text="內嵌XML">/TextBlock>

        TextBlock Grid.Row="2" Grid.Column="0"  Height="25" Width="100"  Text="動態XML">/TextBlock>

        ListBox Name="lisbXmlFile" Grid.Row="0" Grid.Column="1" Height="100" Width="150" ItemsSource="{Binding Source={StaticResource XmlFile},XPath=Student/name}">

        /ListBox>

        ListBox Name="lisbInnerXml" Grid.Row="1" Grid.Column="1"  Height="100" Width="150" ItemsSource="{Binding Source={StaticResource InnerXmlStu},XPath=Student/name}">

        /ListBox>

        ListBox Name="lisbXmlDoc" Grid.Row="2" Grid.Column="1"  Height="100"  Width="150" ItemsSource="{Binding XPath=Student/name}">

        /ListBox>

    /Grid>

/Page>


復制代碼 代碼如下:

XML:


?xml version="1.0" encoding="utf-8" ?>

Students>

  Student>

    name>swd/name>

    score>110/score>

  /Student>

  Student>

    name>asd/name>

    score>120/score>

  /Student>

  Student>

    name>awd/name>

    score>130/score>

  /Student>

/Students>


通過以上示例我想大家應該很容易理解與應用。


2. ObjectDataProvider:

ObjectDataProvider 使您能夠在 XAML 中創建可用作綁定源的對象,并為您提供以下屬性,以對對象執行查詢并綁定到結果。

使用 ConstructorParameters 屬性將參數傳遞給對象的構造函數。

使用 MethodName 屬性調用一個方法。

使用 MethodParameters 屬性將參數傳遞給該方法。 然后,可以綁定到該方法的結果。

使用ObjectType 指定將提供數據綁定源的對象。

使用 ObjectInstance 屬性來指定現有的對象實例作為源

注釋:還可以使用 IsAsynchronous 屬性指定是在輔助線程還是在活動上下文中執行對象創建。也就是是否異步檢索數據。

示例:

復制代碼 代碼如下:

XAML:

C#:


namespace WpfDemo

{

    #region CObjectDataProvider

    public partial class CObjectDataProvider : Page

    {

        public CObjectDataProvider()

        {InitializeComponent();}

    }

    #endregion

    #region Country

    public class Country

    {

        #region Name

        public string Name

        {get;set;}

        #endregion

        #region ProvinceList

        public ListProvince> ProvinceList

        {get;set;}

        #endregion

        #region GetAllCity

        public static ListCountry> GetAllCity()

        {

            return new ListCountry>{

             new Country

             {

                 Name = "中國",

                 ProvinceList = new ListProvince>

                 {

                   new Province{ Name="福建省",

                                 CityList=new ListCity>{new City{Name="福州市"},new City{Name="廈門市"},new City{Name="漳州市"},new City{Name="泉州市"}}

                },

                new Province{Name="江蘇省",

                   CityList=new ListCity>{

                   new City{Name="蘇州市"},new City{Name="南京市"},new City{Name="揚州市"},new City{Name="無錫市"}}

                },

                new Province{Name="江西省",

                     CityList=new ListCity>{new City{Name="南昌市"},new City{Name="九江市"}}}}

             }

            };

        }

        #endregion

    }

    #endregion

#region Province

    public class Province

    {

        #region Name

        public string Name

        {get;set;}

        #endregion

        #region CityList

        public ListCity> CityList

        {get;set;}

        #endregion

    }

    #endregion

    #region City

    public class City

    {

        #region Name

        public string Name

        {get;set;}

        #endregion

    }

#endregion

}


五、類型轉換與數據校驗

1. IValueConverter接口

提供一種將自定義邏輯應用于綁定的方式。

在Binding時,數據源對象到目標對象之間(或者目標對象到數據源對象)可能需要某種轉換。這時只需實現IValueConverter接口自定義值轉換器即可。

接口原型定義:

public interface IValueConverter
{
    object Convert(object value, Type targetType, object parameter, CultureInfo culture);
    object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture);
}

參數value是要轉換的值,typeTarget是轉換后的值類型,parameter是Binding 類的 ConverterParameter傳遞過來的參數。

Convert方法:數據綁定引擎在將值從綁定源傳播給綁定目標時,調用此方法。

ConvertBack方法:數據綁定引擎在將值從綁定目標傳播給綁定源時,調用此方法。

ValueConversion屬性作用是告訴自定義轉換器類可以轉換的源數據和目標數據的 類型(ValueConversion屬性將在稍后的示例中看到)。

2. ValidationRule類

提供一種為檢查用戶輸入的有效性而創建自定義規則的方法。

ValidationRule : 所有自定義驗證規則的基類。提供了讓用戶定義驗證規則的入口。

ExceptionValidation :表示一個規則,該規則檢查在綁定源屬性更新過程中引發的異常。它是一個內置的規則,它檢查在綁定源屬性更新過程中引發的異常。

ValidationResult : 數據驗證結果的表現方式。ValidationRule對象的Validate方法執行完畢后通過ValidationResult來表示驗證的結果。這里包含了錯誤信息—ErrorContent,數據是否有效—IsValid。ValidResult 為 ValidationResult 的有效實例。

ValidationError :表示一個驗證錯誤,該錯誤在 ValidationRule 報告驗證錯誤時由綁定引擎創建。

復制代碼 代碼如下:

XAML:


Page x:Class="WpfDemo.TypeConvertAndValidationRule"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    Title="TypeConvertAndValidationRule"

      xmlns:src="clr-namespace:WpfDemo">

    Grid Height="250" Width="360" Background="Silver">

        Grid.RowDefinitions>
    RowDefinition>
    /RowDefinition>
    RowDefinition>
    /RowDefinition>
    RowDefinition>
    /RowDefinition>
       /Grid.RowDefinitions>

        Grid.ColumnDefinitions>
               ColumnDefinition>
    /ColumnDefinition>
    ColumnDefinition>
    /ColumnDefinition>
        /Grid.ColumnDefinitions>

        TextBlock Height="25" Width="100" Text="生日"  Grid.Row="0" Grid.Column="0">/TextBlock>

        TextBox Name="txtBirthday" Height="25" Width="150"  Grid.Row="0" Grid.Column="1">

            TextBox.Text>

                Binding Path="Birthday" UpdateSourceTrigger="LostFocus" Mode="TwoWay">

                   Binding.ValidationRules>src:ValidationDateTimeRule/>/Binding.ValidationRules>

                   Binding.Converter>src:MyConverterOfBirthFormat/>/Binding.Converter>

                /Binding>
           /TextBox.Text>

           TextBox.ToolTip>
                Binding RelativeSource="{RelativeSource Self}" Path="(Validation.Errors)        [0].ErrorContent">/Binding>
           /TextBox.ToolTip>       /TextBox>

        TextBlock Height="25" Width="150" Grid.Row="1" Text="{Binding Path=Birthday,Mode=OneWay}" Grid.Column="1">/TextBlock>

        TextBlock Height="25" Width="100" Text="電子郵件格式檢查" Grid.Row="2" Grid.Column="0">/TextBlock>

        TextBox Height="25" Width="150" Grid.Row="2" Grid.Column="1">

            TextBox.Text>

                Binding Path="EMail">

                    Binding.ValidationRules>ExceptionValidationRule />/Binding.ValidationRules>

                /Binding>            /TextBox.Text>

            TextBox.ToolTip>

                   Binding RelativeSource="{RelativeSource Self}" Path="(Validation.Errors)[0].ErrorContent">/Binding>

            /TextBox.ToolTip>       /TextBox>

    /Grid>

/Page>


復制代碼 代碼如下:

C#:


namespace WpfDemo

{

    #region TypeConvertAndValidationRule

    public partial class TypeConvertAndValidationRule : Page

    {

        public TypeConvertAndValidationRule()

        {

            InitializeComponent();

            this.DataContext = new UserInfo { Name = "swd", Birthday =System.Convert.ToDateTime("1987/10/21"), EMail = "swd@126.com" };

        }

    }

    #endregion

    #region UserInfo

    public class UserInfo

    {

        #region Name

        public string Name

        {get;set;}

        #endregion

        #region Birthday

        public DateTime Birthday

        {get;set;}

        #endregion

        #region EMail

        private string email;

        public string EMail

        {

            get

            {return email;}

            set

            {

                this.email = value;

                Regex r = new Regex(@"^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$");

                if (!r.IsMatch(value))

                {

                    throw new ApplicationException("電子郵件格式有誤!");

                }

            }

        }

        #endregion

    }

    #endregion

六、      綁定集合對象

1.       ICollectionView接口

允許集合具有當前記錄管理、自定義排序、篩選和分組這些功能。比如排序,分組,篩選,導航以及其它自定義視圖,并且這不會影響到你的后臺數據的實際存儲。

2.       ObservableCollection T> 類

表示一個動態數據集合,在添加項、移除項或刷新整個列表時,此集合將提供通知。

3.       WPF MVVM概要

MVVM(Model-View-ViewModel)是由MVC,MVP演變而來。MVVM分離了邏輯與界面,解放業務邏輯。

您可能感興趣的文章:
  • WPF自定義控件和樣式之自定義按鈕(Button)
  • wpf將表中數據顯示到datagrid示例
  • 在WinForm和WPF中使用GMap.Net地圖插件簡單教程
  • 仿vs實現WPF好看的進度條
  • WPF彈出自定義窗口的方法
  • WPF實現漸變淡入淡出的登陸窗口效果
  • WPF如何自定義TabControl控件樣式示例詳解
  • C# WPF ListView控件的實例詳解
  • WPF應用啟動慢的問題解決

標簽:朔州 洛陽 周口 朝陽 臺州 新鄉 百色 喀什

巨人網絡通訊聲明:本文標題《WPF的數據綁定詳細介紹》,本文關鍵詞  WPF,的,數據,綁定,詳細,介紹,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《WPF的數據綁定詳細介紹》相關的同類信息!
  • 本頁收集關于WPF的數據綁定詳細介紹的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 鄯善县| 应城市| 襄垣县| 铁岭市| 遂平县| 高碑店市| 灌南县| 永康市| 隆子县| 中卫市| 泽库县| 桂林市| 金溪县| 金秀| 五指山市| 乌拉特后旗| 河西区| 长沙市| 喀什市| 武清区| 永昌县| 宜昌市| 泰顺县| 原阳县| 格尔木市| 临泽县| 沙田区| 大方县| 曲周县| 五大连池市| 肥东县| 棋牌| 凉城县| 罗定市| 浙江省| 沙河市| 莱芜市| 丹棱县| 会东县| 黄梅县| 静宁县|