gpt4 book ai didi

c# - 刷新 WPF 中子控件的 DataContext

转载 作者:行者123 更新时间:2023-11-30 22:13:13 27 4
gpt4 key购买 nike

我们有一个客户端-服务器应用程序,它需要动态构建 View 。服务器会将 XAML 字符串与数据 (Dctionary< string, string>) 一起发送到客户端,然后客户端将从接收到的 Xaml 字符串构建 View 并将数据绑定(bind)到 View 。

这是示例 XAML 字符串:

     <StackPanel>
<TextBox>
<TextBox.Text>
<Binding RelativeSource="{{RelativeSource Self}}" Path="DataContext"
Converter="{{StaticResource fieldBindingConverter}}" ConverterParameter="ID_Id"
UpdateSourceTrigger="PropertyChanged">
</Binding>
</TextBox.Text>
</TextBox>

<TextBox>
<TextBox.Text>
<Binding RelativeSource="{{RelativeSource Self}}" Path="DataContext"
Converter="{{StaticResource fieldBindingConverter}}" ConverterParameter="ID_Name"
UpdateSourceTrigger="PropertyChanged">
</Binding>
</TextBox.Text>
</TextBox>
</StackPanel>

数据看起来像:

new Dictionary<string, string>
{
{"ID_Id", "1"},
{"ID_Name", "John"}
};

客户端将使用 XamlReader.Load() 构建 View ,并创建一个窗口来承载它作为内容。客户端还将接收到的数据分配给Window.DataContext

 window.DataContext = dictionaryData;

由于两个 TextBox 从 Window 继承了 DataContext,Text 属性绑定(bind)到 Dictionary。绑定(bind)转换器“fieldBindingConverter”使用具有键的 ConverterParameter 从字典中获取正确的值。

因此,在首次构建 View 时,两个 TextBox 将相应地显示“1”和“John”。

当新数据到达客户端时出现问题

    new Dictionary<string, string>
{
{"ID_Id", "2"},
{"ID_Name", "Peter"}
};

通过重置托管窗口的 DataContext 不会使 TextBox 上的绑定(bind)自行刷新

window.DataContext = newDictionaryData;

事实上,TextBox 的 DataContext 仍然缓存旧数据值。

似乎 TextBox 仅在首次初始化时获取其父 DataContext 的副本,之后仅使用该本地副本。

在这种情况下,拥有一个 ViewModel 并实现 INotifyPropertyChanged 似乎并不容易,因为键“ID_XX”在不同的 View 之间可能会有所不同,并且很难为这种动态性质定义一个模型类(我可以错了)。

如果每次新数据到达时都创建一个新的托管窗口(并设置 DataContext),它确实可以正常工作,因为所有 TextBox 的 DataContext 都将为新的托管窗口派生新数据。

有谁知道如何让 TextBox“刷新”其 DataContext 以获取父窗口上的新集合并“刷新”绑定(bind)?

最佳答案

在 WPF 中,我们通常不会像这样将 WindowDataContext 设置为一个数据类型对象...但是它 可能。相反,我们通常会创建一个特定的类,其中包含需要显示的所有属性,并且正如您提到的那样,实现 INotifyPropertyChanged 接口(interface)。在您的情况下,我们将有一个 Staff 类型的属性,我们可以在 UI 中绑定(bind)到该属性:

public string Staff
{
get { return staff; }
set { staff = value; NotifyPropertyChanged("Staff"); }
}

然后在 XAML 中:

<Window>
<StackPanel>
<TextBox Text="{Binding Staff.Id}"/>
<TextBox Text="{Binding Staff.Name}"/>
</StackPanel>
</Window>

在这个小例子中,这不是绝对必要的,但在较大的项目中,很可能还会显示其他数据。如果您将 Window.DataContext 设置为您的 Staff 数据类型的一个实例,那么您会发现显示其他数据很棘手,例如 的集合工作人员对象。同样,最好更新 Staff 属性,它会通知界面更新 UI,而不是更新不会更新 UI 的 DataContext,因为它不是 '连接到接口(interface)。

它是通过 INotifyPropertyChanged 接口(interface)通知的属性更改,它会在进行属性更改时更新或“刷新”UI 控件中的值。因此,您的答案是实现此接口(interface)并确保在进行属性值更改时调用 INotifyPropertyChanged.PropertyChangedEventHandler

更新>>>

哇!你真的没有在听,是吗?在 WPF 中,我们不会“刷新”DataContextINotifyPropertyChanged 接口(interface)会在属性更改后“刷新”UI。这是解决此问题的一种可能方法:

public class CustomObject
{
public int Id { get; set; }
public string Name { get; set; }
...
}

...

Dictionary<string, string> data = new Dictionary<string, string>
{
{"ID_Id", "1"},
{"ID_Name", "John"}
...
};

...

// Implement the `INotifyPropertyChanged` interface on this property
public ObservableCollection<CustomObject> CustomObjects { get; set; }

...

然后您可以像这样填充您的 CustomObject:

CustomObjects = new ObservableCollection<CustomObject>();
CustomObject customObject = new CustomObject();
foreach (KeyValuePair<string, string> entry in data)
{
if (entry.Key == "ID_Id") // Assuming this always comes first
{
customObject = new CustomObject();
customObject.Id = int.Parse(entry.Value);
}
...
else if (entry.Key == "ID_Name") // Assuming this always comes lasst
{
customObject.Name = entry.Value;
customObjects.Add(customObject);
}
}

...

<ListBox ItemsSource="{Binding CustomObjects}">
<ListBox.ItemTemplate>
<DataTemplate DataType="{x:Type DataTypes:CustomObject}">
<StackPanel>
<TextBox Text="{Binding Id}"/>
...
<TextBox Text="{Binding Name}"/>
</StackPanel>
</DataTemplate DataType="{x:Type DataTypes:CustomObject}">
</ListBox.ItemTemplate>
</Window>

现在你可以争辩说你不能因为这个原因这样做,或者你不想因为那个原因这样做,但最终,你必须这样做这样的事情可以解决您的问题。

关于c# - 刷新 WPF 中子控件的 DataContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19267924/

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