gpt4 book ai didi

c# - 从后面的代码创建到 Resources.resx 中字符串的绑定(bind)

转载 作者:太空宇宙 更新时间:2023-11-03 23:20:00 25 4
gpt4 key购买 nike

我首先在 XAML 中创建一个标签,并将其内容绑定(bind)到我的资源文件中的一个字符串。我已实现本地化并确认当我更改语言时,标签的内容会相应更新。

现在我需要从后面的代码中执行相同的操作。

这里是 XAML 的一个例子:

<Grid Background="#FF313131">
<ScrollViewer>
<StackPanel x:Name="GeneralTab_StackPanel">

<WrapPanel VerticalAlignment="Top" Background="{Binding AxisDataColorCode}" Margin="2,2,2,0">
<Label x:Name="lbl_General_MachineType" Content="{Binding GUI_MachineType, Source={StaticResource Resources}}" FontSize="20" />
<Label x:Name="lbl_General_MachineTypeResult" Content="{Binding MachineBaseType}" FontSize="20" />
</WrapPanel>

<WrapPanel....

尝试在代码隐藏中重新创建它,我有以下内容:

Binding BgColorBinding = new Binding("AxisDataColorCode");

// Something needs to change here. I've tried a bunch of things already with no luck.
Binding GUI_MachineTypeBinding = new Binding("GUI_MachineType");
GUI_MachineTypeBinding.Source = Properties.Resources.GUI_MachineType;

Binding MachineBaseTypeBinding = new Binding("MachineBaseType");


Label Label_MachineType = new Label();
Label_MachineType.Name = "lbl_General_MachineType";
Label_MachineType.FontSize = 20;

// This does not work at all. Help!
Label_MachineType.SetBinding(Label.ContentProperty, GUI_MachineTypeBinding);

// this works! but it's not a binding and doesn't update...
// Label_MachineType.Content = Properties.Resources.GUI_MachineType;

Label Label_MachineTypeResult = new Label();
Label_MachineTypeResult.Name = "lbl_General_MachineTypeResult";
Label_MachineTypeResult.FontSize = 20;
Label_MachineTypeResult.SetBinding(Label.ContentProperty, MachineBaseTypeBinding);

WrapPanel MachineTypeWrapPanel = new WrapPanel();
MachineTypeWrapPanel.Name = "MachineTypeWrapPanel";
MachineTypeWrapPanel.VerticalAlignment = System.Windows.VerticalAlignment.Top;
MachineTypeWrapPanel.Margin = new Thickness(2, 2, 2, 0);
MachineTypeWrapPanel.SetBinding(WrapPanel.BackgroundProperty, BgColorBinding);
MachineTypeWrapPanel.Children.Add(Label_MachineType);
MachineTypeWrapPanel.Children.Add(Label_MachineTypeResult);

我的其他绑定(bind)工作正常,因为我只是将它们绑定(bind)到实现属性更改通知的代码中的属性。

但是,尝试绑定(bind)到我的资源中的任何键都没有任何结果。标签的内容只是空白,在我的调试输出窗口中没有任何错误。

我无法从任何地方的代码中找到任何人绑定(bind)到他们的 Properties.Resources.Whatever 的例子。


解决方案:

谢谢 Henka!

Binding GUI_MachineTypeBinding = new Binding("GUI_MachineType");
GUI_MachineTypeBinding.Source = Application.Current.FindResource("Resources");
....
Label_MachineType.SetBinding(Label.ContentProperty, GUI_MachineTypeBinding);

最佳答案

如果您在 UI 后面的代码中设置绑定(bind),则不会收到通知,您应该创建自定义扩展并将 WeakReference 保存到 DependencyProperty 并在文化改变了,我建议使用其他解决方案,看看这篇文章。 Advanced WPF Localization

关于c# - 从后面的代码创建到 Resources.resx 中字符串的绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35755990/

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