第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

單向依賴屬性的實現(xiàn)

單向依賴屬性的實現(xiàn)

C#
慕沐林林 2023-09-16 14:56:25
我正在使用 WPF 開發(fā)自定義用戶控件。我已經(jīng)注冊了 DependancyProperty,但我想讓它僅為 OneWay 綁定。有可能做到嗎?這是我所擁有的:public static readonly DependencyProperty CustomPrProperty =        DependencyProperty.Register(            "CustomPr",            typeof(string),            typeof(CustomView),            new FrameworkPropertyMetadata(string.Empty, OnDependencyPropertyChanged));這樣,當有人使用用戶控件時,他可以將其設(shè)為OneWay、OneWayToSource 和TwoWay。我怎樣才能使其只讀屬性?
查看完整描述

1 回答

?
忽然笑

TA貢獻1806條經(jīng)驗 獲得超5個贊

您可以設(shè)置BindsTwoWayByDefault的屬性FrameworkPropertyMetadata來指定該屬性默認綁定雙向。Mode仍然可以通過將單個綁定的屬性設(shè)置為 以外的其他內(nèi)容來更改模式TwoWay。


要創(chuàng)建無法設(shè)置的只讀依賴屬性,您應(yīng)該使用RegisterReadOnly方法:


internal static readonly DependencyPropertyKey CustomPrKey = DependencyProperty.RegisterReadOnly(

 "CustomPr",

 typeof(string),

 typeof(CustomView),

 new PropertyMetadata(string.Empty)

);


public static readonly DependencyProperty CustomPrProperty = CustomPrKey.DependencyProperty;


public string CustomPr

{

    get { return (string)GetValue(CustomPrProperty); }

}


查看完整回答
反對 回復(fù) 2023-09-16
  • 1 回答
  • 0 關(guān)注
  • 125 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號