gpt4 book ai didi

Xamarin Forms-强制控件刷新绑定(bind)值

转载 作者:行者123 更新时间:2023-12-02 17:51:45 27 4
gpt4 key购买 nike

鉴于以下 ViewModel...

public class NameEntryViewModel 
{
public NameEntryViewModel()
{
Branding = new Dictionary<string, string>();

Branding.Add("HeaderLabelText", "Welcome to the app");
}

public Dictionary<string, string> Branding { get; set; }
}

绑定(bind)到页面...

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Monaco.Forms.Views.NameEntryPage">

<Label Text="{Binding Branding[HeaderLabelText]}" />

</ContentPage>

当页面出现时,标签将收到文本“欢迎使用该应用程序”。这非常有效,并且符合我们能够定制和全局化我们的应用程序的计划。然后,品牌字典在本示例中是静态设置的,但在现实世界中,它是由服务调用中的数据初始化的。

但是,如果用户想要将语言切换为西类牙语,我们需要将每个绑定(bind)标签更新为新值。重置品牌字典并用西类牙语翻译填充它很容易,但是我们如何强制控件从其绑定(bind)源刷新?

我试图在这里避免双向数据绑定(bind),因为我们不希望为控件的每个 Text 属性创建支持属性的代码开销。因此,我们绑定(bind)到值字典。

回答

我接受了下面的答案,但我没有使用传统的属性 setter 。相反,当用户想要切换不同的语言时,我们现在有一个集中处理程序,可以重新填充我们的字典,然后通知字典的更改。我们正在使用 MVVMCross,但您可以转换为标准形式...

    public MvxCommand CultureCommand
{
get
{
return new MvxCommand(async () =>
{
_brandingService.ToggleCurrentCulture();
await ApplyBranding(); // <-- this call repopulates the Branding property
RaisePropertyChanged(() => Branding);
});
}
}

最佳答案

正如 @BillReiss 提到的,您需要使用 OnPropertyChanged 事件从此类继承 NameEntryViewModel:

public class BaseViewModel : INotifyPropertyChanged
{

protected BaseViewModel ()
{

}

public event PropertyChangedEventHandler PropertyChanged;

protected virtual void OnPropertyChanged ([CallerMemberName] string propertyName = null)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
handler (this, new PropertyChangedEventArgs (propertyName));
}
}

并创建一个私有(private)属性(property),您可以将其分配给您的公共(public)属性(property),例如:

Dictionary<string, string> _branding = new Dictionary<string, string>();
public Dictionary<string, string> Branding
{
get
{
return _branding;
}
set
{
_branding = value;
OnPropertyChanged(nameof(Branding));
}
}

每次设置 Branding 属性时,它都会让 View 知道某些内容发生了变化! 有时,如果您在后台线程上执行此操作,则必须使用 Device.BeginInvokeOnMainThread()

关于Xamarin Forms-强制控件刷新绑定(bind)值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42124944/

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