gpt4 book ai didi

xaml - UWP 应用的调试和 Release模式

转载 作者:行者123 更新时间:2023-12-05 01:27:01 24 4
gpt4 key购买 nike

我正在尝试了解我在处理 UWP 应用程序时遇到的这个问题。我能够解决这个问题,但我仍然不清楚其背后的解释/推理。

我在我的代码库中使用 XAMLBehaviours SDK 中的“EventTriggerBehavior”。此事件用于检查 GridView 的“ClickedItem”。

Microsoft.Xaml.Interactivity 中的 IAction.Execute 方法获取 ClickedItem 事件作为参数。

函数定义为object IAction.Execute(object sender, object parameter)

当我在 Debug模式下运行应用程序时,它工作正常并且参数被分配了正确的值。但是当我对 Release 进行配置时,我意识到我的 Behaviors SDK 无法正常工作。

这是之前的代码片段:

object IAction.Execute(object sender, object parameter)
{

object propertyValue = parameter;
foreach (var propertyPathPart in propertyPathParts)
{
var propInfo = propertyValue.GetType().GetTypeInfo().GetDeclaredProperty(propertyPathPart);
if (propInfo != null)
propertyValue = propInfo.GetValue(propertyValue);
}
}

在进一步调查中,我意识到 propertyValue 没有使用正确的值进行初始化。因此,为了解决这个问题,我对参数进行了类型转换。

object propertyValue = parameter as ItemClickEventArgs;

现在一切都开始在 Release模式下正常工作,包括启用代码优化时。

我会归类为启用 Compile with .NET Native 工具链时 System.reflection 在 Release 模式下无法正常工作。当我进行隐式转换时,这不再是问题了。

根据此视频 https://channel9.msdn.com/Shows/Going+Deep/Inside-NET-Native ,反射仍然有效,但我不得不为 Behaviors SDK 转换。我想了解更多详细信息并正确理解这一点。

最佳答案

在您的项目 uwp 中,您可以找到一个名为 Default.rd.xml 的文件(在 Properties 文件夹中)。这是一个配置文件,指定在启用 .net native 时指定的程序元素是否可用于反射(或不可用)。

在您的情况下,您可以添加以下声明以添加 ItemClickEventArgs 类型。如果需要,可以选择声明命名空间而不是类型。

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
<Application>
<!--
An Assembly element with Name="*Application*" applies to all assemblies in
the application package. The asterisks are not wildcards.
-->
<Assembly Name="*Application*" Dynamic="Required All"/>

<!-- Add your application specific runtime directives here. -->
<Type Name="Windows.UI.Xaml.Controls.ItemClickEventArgs" Browse="Required Public"/>

</Application>
</Directives>

您可以查看此链接以获取更多详细信息:

Reflection and .NET Native

NET Native Deep Dive: Help! I Hit a MissingMetadataException

关于xaml - UWP 应用的调试和 Release模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34042324/

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