NativeActivity 活动的父活动类型

发布于 2024-11-05 04:22:08 字数 16 浏览 2 评论 0原文

有什么方法可以从

Is there any way in which it can be seen the type of the parent activity of a NativeActivity from the Execute method ?

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

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

发布评论

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

评论(1

流年里的时光 2024-11-12 04:22:08

是的,您可以执行以下代码块,它将返回内部 Parent 属性的值 - 这将是您的父级的实例。

this.GetType()
    .GetProperty(
        "Parent", 
        System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
    .GetValue(this, null)

Yes, you can execute the following code block and it will return you the value of the internal Parent property -- this will be the instance of your parent.

this.GetType()
    .GetProperty(
        "Parent", 
        System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)
    .GetValue(this, null)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文