来自不同 UIElement 的 UIElement 的 Visibility 控制

发布于 2024-12-02 02:16:23 字数 229 浏览 1 评论 0原文

我有两个 UIElement X (X.xaml, Name="_X") 和 Y (Y.xaml, Name="_Y")。 如何从 X.xaml.cs 控制 Y.xaml 的可见性?

从 Y.xaml.cs 控制 Y.xaml 的 Visibility 很容易,因为我可以使用 _Y.Visibility = SOMETHING,但我不知道该怎么做来自 X.xaml.cs。

I have two UIElements X (X.xaml, Name="_X") and Y (Y.xaml, Name="_Y").
How can I control Visibility of Y.xaml from X.xaml.cs?

It's easy to control Visibility of Y.xaml from Y.xaml.cs, as I can use _Y.Visibility = SOMETHING, but I don't know how to do that from X.xaml.cs.

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

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

发布评论

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

评论(1

旧时光的容颜 2024-12-09 02:16:23

这是一个关于从另一个类中访问一个类的属性/成员的常见编程问题。

您需要获取对您尝试访问的类的实例的引用。这取决于它们的创建方式以及它们在对象图方面如何相互关联。他们有同一个父母吗?

This is a common programming question about accessing the properties/members of one class from within another.

You need to grab a hold of a reference to the instance of the class you're trying to access. That depends on how they are created and how they related to each other in terms of object graph. Do they share the same parent, etc?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文