inotifypropertychanged

    -2熱度

    2回答

    這是很奇怪的,但是當我打電話BindableBase.SetProperty()沒有更新UI: private string person; public string Person { get { return person; } set { person = value; SetProperty(ref this.person, val

    4熱度

    3回答

    Custom_View.xaml <UserControl> <local:Custom_Text_Field Custom_Text_Field_Color="{x:Bind ViewModel.Color1 , Mode=TwoWay}"> </local:Custom_Text_Field> <local:Custom_Text_

    0熱度

    2回答

    我在Windows通用應用程序中使用x:Bind和INotifyPropertyChanged將類屬性綁定到嵌入在ListView控件中的TextBox。該類屬性的類型爲double,我想阻止用戶輸入string。我遇到的問題是,使用雙向數據綁定時,在用戶輸入無效輸入時,我可以處理它之前會拋出異常。

    1熱度

    1回答

    我有4個多邊形 ... xmlns:cm="http://www.caliburnproject.org" ... <Polygon cm:Message.Attach=" [Event MouseEnter] = [Action OnMouseEnter($eventArgs)]; [Event MouseLeave] = [Action OnMouseLeave($e

    1熱度

    4回答

    我有一個類如下: class Foo : PropertyChangedBase { private int _property; public int Property { get { return _property; } set { OnAssignPropertyChanged("Property",() => _property, value

    -1熱度

    2回答

    我有一個ListView,它的itemsource是元素,這是一個Schranken對象列表。 SchrankePresenter是頁面的DataContext(在構造函數中設置)。 頁面顯示正確,直到單擊按鈕。如果單擊一個按鈕,該按鈕的名稱值應該更改,ListView應該有一個項目更多,但沒有任何反應/更新。 這裏是SchrankenPresenter: public class Schrank

    0熱度

    1回答

    我已經綁定了2級數據到MS DataGridView。通過Complex屬性填充的子表不可見。是否有任何定製需要我在DataGridView中啓用嵌套表格視圖請參考附件。 這是我的DataSource類。 public class Level1 : INotifyPropertyChanged { bool a; bool dispatch, abandon; Li

    0熱度

    2回答

    this教程INotifyPropertyChanged在模型中 - 不在ViewModel中。 它是正確和可接受的嗎?什麼是標準?

    1熱度

    1回答

    我有我的視圖模型與PostSharp做: [NotifyPropertyChanged] class ProfileSelectorViewModel { public int Selection { get; set; } } Selection被綁定到一個列表框的選擇屬性。我怎樣才能訂閱這個屬性的變化?我想在Selection更改其值時調用方法。

    1熱度

    2回答

    我正在查看Xamarin Sport應用程序代碼,並試圖瞭解他們正在做的一些很酷的事情。我不明白什麼IsDirty正在使用。它被定義爲here並實施here並在很多地方使用,如here。 我讀了一些關於和ICommand的IsDirty屬性,所以也許這是一種方式來稱爲整個模型是骯髒的,但有什麼影響呢? 我也看到它正在使用here我認爲這是他們爲什麼首先創建它。 感謝您對我們的洞察力。