背水一戰 Windows 10 (18) - 綁定: 與 Element 綁定, 與 Indexer 綁定, TargetNullValue, FallbackValue

来源:http://www.cnblogs.com/webabcd/archive/2016/06/24/5612982.html
-Advertisement-
Play Games

背水一戰 Windows 10 之 綁定: 與 Element 綁定, 與 Indexer 綁定, TargetNullValue - 當綁定數據為 null 時顯示的值, FallbackValue - 當綁定失敗時顯示的值 ...


[源碼下載]


背水一戰 Windows 10 (18) - 綁定: 與 Element 綁定, 與 Indexer 綁定, TargetNullValue, FallbackValue



作者:webabcd


介紹
背水一戰 Windows 10 之 綁定

  • 與 Element 綁定
  • 與 Indexer 綁定
  • TargetNullValue - 當綁定數據為 null 時顯示的值
  • FallbackValue - 當綁定失敗時顯示的值



示例
1、演示如何與 Element 綁定
Bind/BindingElement.xaml

<Page
    x:Class="Windows10.Bind.BindingElement"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Bind"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <!--
                本例用於演示如何與 Element 綁定,以及 OneTime, OneWay, TwoWay 的區別
            -->

            <!--
                OneTime 方式綁定元素
            -->
            <TextBox Text="{Binding ElementName=txtOneTime, Path=Text, Mode=OneTime}" />
            <TextBox Name="txtOneTime" Text="OneTime" Margin="0 10 0 0" />
            

            <!--
                OneWay 方式綁定元素(OneWay 是預設方式)
            -->
            <TextBox Text="{Binding ElementName=txtOneWay, Path=Text, Mode=OneWay}" Margin="0 30 0 0" />
            <TextBox Name="txtOneWay" Text="OneWay" Margin="0 10 0 0" />

            <!--
                TwoWay 方式綁定元素(同時演示一下 Binding 標記的另一種寫法,就是直接把 Path 指定的路徑放到 Binding 的後面)
            -->
            <TextBox Text="{Binding Text, ElementName=txtTwoWay, Mode=TwoWay}" Margin="0 30 0 0" />
            <TextBox Name="txtTwoWay" Text="TwoWay" Margin="0 10 0 0" />

            <!--
                TwoWay 方式綁定元素(在 C# 端指定 Binding 對象)
            -->
            <TextBox Name="textBox1" Margin="0 30 0 0" />
            <TextBox Name="textBox2" Text="TwoWay" Margin="0 10 0 0" />

        </StackPanel>
    </Grid>
</Page>

Bind/BindingElement.xaml.cs

/*
 * 演示如何與 Element 綁定
 */

using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Data;

namespace Windows10.Bind
{
    public sealed partial class BindingElement : Page
    {
        public BindingElement()
        {
            this.InitializeComponent();

            this.Loaded += BindingElement_Loaded;
        }

        // 在 C# 端做綁定
        private void BindingElement_Loaded(object sender, Windows.UI.Xaml.RoutedEventArgs e)
        {
            // 實例化 Binding 對象
            Binding binding = new Binding()
            {
                ElementName = nameof(textBox2),
                Path = new PropertyPath(nameof(TextBox.Text)),
                Mode = BindingMode.TwoWay // 預設是 OneWay 的
            };

            // 將目標對象的目標屬性與指定的 Binding 對象關聯
            BindingOperations.SetBinding(textBox1, TextBox.TextProperty, binding);
        }
    }
}


2、演示如何與 Indexer 綁定
Bind/BindingIndexer.xaml

<Page
    x:Class="Windows10.Bind.BindingIndexer"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Bind"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">
        <StackPanel Margin="10 0 10 10">

            <!--演示如何綁定集合中的某個元素-->
            <TextBlock Name="textBlock" Text="{Binding Path=[3]}" />

            <!--演示如何綁定集合中的某個對象的某個屬性-->
            <TextBlock Name="textBlock2" Text="{Binding Path=[5].Name}" Margin="0 10 0 0" />

            <!--演示如何綁定 string 類型的索引器-->
            <TextBlock Name="textBlock3" Text="{Binding Path=[webabcd]}" Margin="0 10 0 0" />

            <!--演示如何綁定字典表中指定 key 的數據-->
            <TextBlock Name="textBlock4" Text="{Binding Path=[hello]}" Margin="0 10 0 0" />

            <!--演示如何在 C# 端綁定索引器-->
            <TextBox Name="textBox" Margin="0 10 0 0" />

        </StackPanel>
    </Grid>
</Page>

Bind/BindingIndexer.xaml.cs

/*
 * 演示如何與 Indexer 綁定
 */

using System;
using System.Collections.Generic;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Data;
using Windows10.Common;

namespace Windows10.Bind
{
    public sealed partial class BindingIndexer : Page
    {
        public BindingIndexer()
        {
            this.InitializeComponent();

            this.Loaded += BindingIndexer_Loaded;

            BindingDemo();
        }

        private void BindingIndexer_Loaded(object sender, RoutedEventArgs e)
        {
            // 用於演示如何綁定集合中的某個元素
            List<string> list = new List<string>();
            for (int i = 0; i < 10; i++)
            {
                list.Add("索引:" + i.ToString());
            }
            textBlock.DataContext = list;

            // 用於演示如何綁定集合中的某個對象的某個屬性
            textBlock2.DataContext = TestData.GetEmployees();

            // 用於演示如何綁定 string 類型的索引器
            textBlock3.DataContext = this;

            // 用於演示如何綁定字典表中指定 key 的數據
            Dictionary<string, string> dic = new Dictionary<string, string>() { { "hello", "hello webabcd" } };
            textBlock4.DataContext = dic;
        }

        // 自定義一個索引器
        public object this[string indexer]
        {
            get
            {
                return "string: " + indexer;
            }
        }



        // 在 C# 端綁定索引器
        private void BindingDemo()
        {
            textBox.DataContext = this;

            // 實例化 Binding 對象
            Binding binding = new Binding()
            {
               Path = new PropertyPath("[wanglei]")
            };
            
            // 將目標對象的目標屬性與指定的 Binding 對象關聯
            BindingOperations.SetBinding(textBox, TextBox.TextProperty, binding);

            /*
             * 註:經測試在 TextBox 做如上綁定是正常的。但是如果在 TextBlock 做如上綁定則運行時報錯 Attempted to read or write protected memory. This is often an indication that other memory is corrupt. 不知道為什麼
             */
        }
    }
}


3、演示 Binding 中的 TargetNullValue 和 FallbackValue 的用法
Bind/TargetNullValueFallbackValue.xaml

<Page
    x:Class="Windows10.Bind.TargetNullValueFallbackValue"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Windows10.Bind"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="Transparent">

        <StackPanel Margin="10 0 10 10">

            <!--
                FallbackValue - 當綁定失敗時顯示的值
            -->
            <TextBlock Name="textBlock1" Text="{Binding Path=MyName, FallbackValue='綁定失敗時的預設值'}" Margin="5" />

            <!--
                TargetNullValue - 當綁定數據為 null 時顯示的值
            -->
            <TextBlock Name="textBlock2" Text="{Binding Path=MyName, TargetNullValue='綁定數據的返回值為 null'}" Margin="5" />

        </StackPanel>
    </Grid>
</Page>

Bind/TargetNullValueFallbackValue.xaml.cs

/*
 * 演示 Binding 中的 TargetNullValue 和 FallbackValue 的用法
 */

using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;

namespace Windows10.Bind
{
    public sealed partial class TargetNullValueFallbackValue : Page
    {
        public TargetNullValueFallbackValue()
        {
            this.InitializeComponent();
        }

        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            // 為 textBlock2 提供數據上下文
            textBlock2.DataContext = this;

            /*
            // 實例化 Binding 對象
            Binding binding = new Binding()
            {
                Path = new PropertyPath("Name"),
                TargetNullValue = "TargetNullValue",
                FallbackValue = "FallbackValue"
            };

            // 將目標對象的目標屬性與指定的 Binding 對象關聯
            BindingOperations.SetBinding(textBlock2, TextBox.TextProperty, binding);
            */
        }

        public string MyName { get; set; } = null;
    }
}



OK
[源碼下載]


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • diff -ruNa test1 test2 > test12.diff -r 比較子目錄中的文件 -u 以合併的方式顯示文件的不同 -N 比較目錄時,若文件A僅出現在某個目錄中,預設會顯示:Only in目錄:文件A若使用-N參數,則diff會將文件A與一個空白的文件比較 -a 逐行比較文件內容 ...
  • zip命令的基本用法是: zip [參數] [打包後的文件名] [打包的目錄路徑] linux zip命令參數列表: -a 將文件轉成ASCII模式 -F 嘗試修複損壞的壓縮文件 -h 顯示幫助界面 -m 將文件壓縮之後,刪除源文件 -n 特定字元串 不壓縮具有特定字尾字元串的文件 -o 將壓縮文件 ...
  • 1、啟動網卡 2、SSH鏈接 ifconfig 查看IP後SSH終端連接3、更新源 最小化安裝是沒有wget工具的,必須先安裝再修改源 備份原系統更新源 進入yum.repos.d目錄 下載網易鏡像源或者搜狐鏡像源 網易搜狐的源可能有問題。 參考http://blog.csdn.net/ichson ...
  • #卸載mysql /etc/init.d/mysqld stop &> /dev/null killall mysqld &> /dev/null sudo rm -rf /mengdi/server/mysql &> /dev/null sudo rm -rf /mengdi/server/mys ...
  • nmon 下載:http://pan.baidu.com/s/1jICoSpo 放到linux下可以直接運行。 nmon 工具可以幫助在一個屏幕上顯示所有重要的性能優化信息,並動態地對其進行更新。 nmon 工具可以為 AIX 和 Linux 性能專家提供監視和分析性能數據的功能,其中包括: CPU ...
  • 三個文件夾,第一個是放置前端部分,第二個是各種支持的類文件,第三個是單元測試文件。 Core文件類庫 放置的是與資料庫做交互的文件,以及一些第三方類庫,還有與資料庫連接的文件 1.Lasy.Validator是一個基於Attribute驗證器,我覺得這種驗證方式在挺便捷的,具體可以在這裡查看到htt ...
  • 這些對象都是用來保存信息的,包括用戶信息,傳遞值的信息,全局信息等等。下麵主要說一下他們之間的區別: 1.Application對象 Application用於保存所有用戶的公共的數據信息,如果使用Application對象,一個需要考慮的問題是任何寫操作都要在Application_OnStart ...
  • 引言 HTTP 是一個屬於應用層的面向對象的協議,由於其簡捷、快速的方式,適用於分散式超媒體信息系統。它於1990年提出,經過幾年的使用與發展,得到不斷地完善和 擴展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的規範化工作正在進行之中,而且HTTP-NG(Next Genera ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...