這篇文章主要介紹Xamarin XAML語言中如何實(shí)現(xiàn)控件模板的模板綁定,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司電話聯(lián)系:028-86922220,為您提供成都網(wǎng)站建設(shè)網(wǎng)頁設(shè)計(jì)及定制高端網(wǎng)站建設(shè)服務(wù),創(chuàng)新互聯(lián)公司網(wǎng)頁制作領(lǐng)域10多年,包括活動(dòng)板房等多個(gè)方面擁有豐富設(shè)計(jì)經(jīng)驗(yàn),選擇創(chuàng)新互聯(lián)公司,為網(wǎng)站保駕護(hù)航!
為了可以輕松更改控件模板中控件上的屬性值,可以在控件模板中實(shí)現(xiàn)模板綁定功能。模板綁定允許控件模板中的控件將數(shù)據(jù)綁定到公共屬性上。這時(shí)需要使用TemplateBinding。它可以將控件模板中的控件的屬性綁定到擁有控件模板的目標(biāo)視圖的父級(jí)上的可綁定屬性上。
注意:(1)TemplateBinding類似于現(xiàn)有的Binding,不同之處在于TemplateBinding的源總是自動(dòng)設(shè)置為擁有控件模板的目標(biāo)視圖的父級(jí)。(2)不支持在控件模板之外使用TemplateBinding。
【示例14-5:ControlTemplateDemo】以下將以項(xiàng)目ControlTemplateDemo為基礎(chǔ),在控件模板中實(shí)現(xiàn)模板綁定功能。具體的操作步驟如下:
(1)打開MainPage.xaml文件,編寫代碼,實(shí)現(xiàn)可綁定屬性的定義。代碼如下:
namespace ControlTemplateDemo
{
public partial class MainPage : ContentPage
{
bool originalTemplate = true;
ControlTemplate tealTemplate;
ControlTemplate aquaTemplate;
public static readonly BindableProperty HeaderTextProperty = BindableProperty.Create("HeaderText",
typeof(string),
typeof(MainPage),
"Knowledge is power.");
public static readonly BindableProperty FooterTextProperty = BindableProperty.Create("FooterText",
typeof(string),
typeof(MainPage),
"Xamarin.Froms XAML");
public MainPage()
{
InitializeComponent();
…… //此處省略了對(duì)tealTemplate和aquaTemplate對(duì)象的實(shí)例化
}
public string HeaderText
{
get
{
return (string)GetValue(HeaderTextProperty);
}
}
public string FooterText
{
get
{
return (string)GetValue(FooterTextProperty);
}
}
…… //此處省略了對(duì)OnButtonClicked方法的實(shí)現(xiàn)
}
}
(2)打開App.xaml文件,編寫代碼,在第一個(gè)構(gòu)建的ControlTemplate中實(shí)現(xiàn)模板綁定功能。代碼如下:
Color="Teal" />
Text="{TemplateBinding Parent.HeaderText}"
TextColor="White"
FontSize="18"
VerticalOptions="Center" />
Grid.ColumnSpan="2" />
Grid.ColumnSpan="2"
Color="Teal" />
Grid.Column="1"
Text="{TemplateBinding Parent.FooterText}"
TextColor="White"
FontSize="18"
VerticalOptions="Center" />
在此代碼中,我們將兩個(gè)Label控件的Text屬性實(shí)現(xiàn)了模板綁定功能,在上文中我們提到了屬性使用模板綁定將其綁定到擁有ControlTemplate的目標(biāo)視圖的父級(jí)上的可綁定屬性上。但是,在我們的代碼中,模板綁定綁定到Parent.HeaderText和Parent.FooterText上,而不是HeaderText和FooterText上。這是因?yàn)樵诖舜a中,可綁定屬性是在目標(biāo)視圖的祖父級(jí)上定義的,而不是父級(jí)。
注意:模板綁定的源始終自動(dòng)設(shè)置為擁有控件模板的目標(biāo)視圖的父級(jí),在此項(xiàng)目中是ContentView實(shí)例。模板綁定使用Parent屬性返回ContentView實(shí)例的父元素,這是ContentPage實(shí)例。
以上是“Xamarin XAML語言中如何實(shí)現(xiàn)控件模板的模板綁定”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!