使用另一个文本框分配WPF文本框对象

使用另一个文本框分配WPF文本框对象

本文介绍了使用另一个文本框分配WPF文本框对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我正在反序列化已保存的文本框属性并分配给文本框。文本框属性正在使用新值而不是UI(WPF)进行更新。



以下是片段。

Hi,

I'm deserializing the saved textbox properties and assigning to the textbox. Textbox properties are getting updated with new values but not the UI (WPF).

below is the snippet.

textbox1 = (TextBox) new XmlObjectSerializer().Deserialize(File.ReadAllText(@"WPFUISerialization.Xml"));



谢谢,

Vireen


Thank You,
Vireen

推荐答案

如果要更改UI,可以将 TextBox 加载到另一个变量,并在UI的 TextBox 。类似于:

If you want to change the UI, you can load the TextBox to another variable and, change the wanted values in the UI's TextBox. Something like:

TextBox tb = (TextBox) new XmlObjectSerializer().Deserialize(File.ReadAllText(@"WPFUISerialization.Xml"));

textbox1.Text = tb.Text;
// ...


这篇关于使用另一个文本框分配WPF文本框对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 07:45