如何修改 UIElement 的内容?

发布于 2024-09-28 20:07:59 字数 717 浏览 3 评论 0原文

有没有办法修改 UIElement 的内容?

我有这样的事情:

System.IO.FileStream rdr = System.IO.File.OpenRead(xamlFilePath);
System.Windows.UIElement uie = (System.Windows.UIElement)System.Windows.Markup.XamlReader.Load(rdr);

当我运行调试器并将 uie 添加到“Watch”窗口时,它会给出以下内容:

[-]uie
[-]System.Windows.Controls.Textbox          {System.Windows.Controls.Textbox:Title}
<some stuff...>
Text                                        "Title"

现在我需要能够做两件事:(1)读取文本框中的文本,并且(2) 随时修改。

I was hoping for something in the lines of:
{
Textbox tb = (Textbox)uie.GetChild();
tb.Text = "New Title"
uie.SetChild(tb);
}

,但它不是那样工作的。如果有人能指出执行此功能的方法,我将非常感激。

Is there a way to modify a UIElement's contents?

I have something like this:

System.IO.FileStream rdr = System.IO.File.OpenRead(xamlFilePath);
System.Windows.UIElement uie = (System.Windows.UIElement)System.Windows.Markup.XamlReader.Load(rdr);

And when I run the debugger and add uie to the "Watch" window, it gives me the following:

[-]uie
[-]System.Windows.Controls.Textbox          {System.Windows.Controls.Textbox:Title}
<some stuff...>
Text                                        "Title"

Now I need to be able to do two things: (1) read the Text in the textbox, and (2) modify it whenever I want.

I was hoping for something in the lines of:
{
Textbox tb = (Textbox)uie.GetChild();
tb.Text = "New Title"
uie.SetChild(tb);
}

, but it does not work like that. If anyone can point me to the method that performs this function I'd really appreciate it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

睡美人的小仙女 2024-10-05 20:07:59

TextBox 是一个UIElement。当您从阅读器中加载 XAML 时,您可以及时将其转换为 TextBox ;然而,由于您将其转换为 UIElement 您可以在任何时间点去...

if (uie is TextBox)
{
   TextBox tb = (TextBox)uie;
   b.text = "New title";
}

TextBox is a UIElement. When you load the XAML out of the reader you could cast it to a TextBox at that point in time; however since you are casting it to a UIElement you could at whatever point in time go...

if (uie is TextBox)
{
   TextBox tb = (TextBox)uie;
   b.text = "New title";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文