gpt4 book ai didi

c# - 如何将属性名称转换为 WPF 中的框架元素?

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

这是 C# 中的代码:

 public static FrameworkElement GetFocusedOn(UIElement element)
{
return (FrameworkElement)element.GetValue(FocusedOnProperty);
}

我试图在 VB.NET 中编写它,但它不会转换为 FrameworkElement。有什么想法吗?

最佳答案

如果 FocusedOn 属性返回一个 FrameworkElement,这应该可以工作:

Public Shared Function GetFocusedOn(ByVal element As UIElement) As FrameworkElement
Return CType(element.GetValue(FocusedOnProperty), FrameworkElement)
End Function

您想使用 TryCast operator .

关于c# - 如何将属性名称转换为 WPF 中的框架元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53433732/

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