gpt4 book ai didi

c# - 使用 NotificationBase 的数据绑定(bind)问题

转载 作者:太空狗 更新时间:2023-10-30 01:32:08 25 4
gpt4 key购买 nike

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_Field
Custom_Text_Field_Color="{x:Bind ViewModel.Color2 , Mode=TwoWay}">
</local:Custom_Text_Field>
<Button Click="{x:Bind ViewModel.ChangeColor"/>
</UserControl>

Custom_View.cs

public sealed partial class Custom_View : UserControl
{
public Custom_View_VM ViewModel { get; set; }
public Custom_View()
{
ViewModel = new Custom_View_VM();
this.InitializeComponent();
}
}

Custom_View_VM.cs

public class Custom_View_VM : NotificationBase
{
public Brush Color1 { get; set; }
public Brush Color2 { get; set; }
public void ChangeColor{//change color1 or color2};
}

我使用了这个例子中的 NotificationBase 类:https://blogs.msdn.microsoft.com/johnshews_blog/2015/09/09/a-minimal-mvvm-uwp-app/

如果我在构造函数中影响 Color1 或 Color2 的值,它会起作用(更改 View ),但在调用 ChangeColor 后, View 模型中的值会更改,但不会影响 View 。

最佳答案

要更新 UI,它应该接收 PropertyChanged 事件。您应该使用 NotificationBase 的机制来设置属性,这也会引发 PropertyChanged 事件:

public class Custom_View_VM : NotificationBase
{
private Brush color1;
public Brush Color1
{
get { return color1; }
set { SetProperty(color1, value, () => color1 = value); }
}
// TODO: same here
public Brush Color2 { get; set; }
public void ChangeColor{//change color1 or color2};
}

此外,颜色通常不会进入ViewModelsViewModel 应该有一些业务逻辑属性,您可以根据 XAMLTextBox 设置颜色,例如 IsNameAvailable .

关于c# - 使用 NotificationBase 的数据绑定(bind)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38218701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com