gpt4 book ai didi

c# - 访问窗口资源中的命名元素

转载 作者:行者123 更新时间:2023-11-30 16:24:05 24 4
gpt4 key购买 nike

问题:

我正在尝试访问在 Window Resources 中定义的 FlowDocument 中的命名 Run 元素。为了阐明我的意思,请考虑以下代码:

<Window.Resources>
<FlowDocument x:Key="doc">
<Paragraph>
<Run x:Name="run" />
</Paragraph>
</FlowDocument>
</Window.Resources>

在这里,我将尝试访问名为“run”的 Run 元素。

到目前为止我尝试了什么:

  • 只需使用元素的名称即可访问它。但是,窗口资源中的命名元素显然不具有与窗口内容中定义的元素相同的默认可访问性,因为此方法不起作用。

  • 尝试向 Run 元素添加键,然后通过 FindResource() 方法访问该元素。不幸的是,似乎无法将键添加到嵌套元素。

  • 下面的代码会抛出一个NullReferenceException:

    FlowDocument doc = (FlowDocument)FindResource("doc");
    ((Run)doc.FindName("run")).Text = "example text";

最佳答案

您可以使用 LogicalTreeHelper.FindLogicalNode作为

 var doc = this.Resources["doc"] as FlowDocument;
((Run)LogicalTreeHelper.FindLogicalNode(doc, "run")).Text = "example text";

上面链接的备注:

  • The search direction for FindLogicalNode is toward child objects (down the tree); the search direction for the FindName methods is towards parent objects (up the tree).
  • The FindName methods are governed by the concept of a XAML namescope. Using FindName you are guaranteed that only one object of that name exists, because XAML namescopes enforce uniqueness. In contrast, FindLogicalNode ignores XAML namescope and might cross XAML namescope boundaries during the search.

关于c# - 访问窗口资源中的命名元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11068529/

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