gpt4 book ai didi

wpf - GetTemplateChild 总是返回 null

转载 作者:行者123 更新时间:2023-12-04 18:52:00 27 4
gpt4 key购买 nike

我使用 GetTemplateChild 如下,但它总是返回 NULL。如何解决这个问题?

[TemplatePart(Name = "textPoints", Type = typeof(TextBlock))]
textPoints = (TextBlock)GetTemplateChild("TextBlock");

最佳答案

GetTemplateChild将名称作为参数,而不是类型。由于您的 XAML 被定义为:

<TextBlock Text="{Binding}" Foreground="Cyan" 
x:Name="textPoints"

试试通过 "textPoints"而不是 "TextBlock"作为要检索的名称:
[TemplatePart(Name = "textPoints", Type = typeof(TextBlock))]
textPoints = (TextBlock)GetTemplateChild("textPoints");

关于wpf - GetTemplateChild 总是返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4786006/

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