来自不同 UIElement 的 UIElement 的 Visibility 控制
我有两个 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 UIElement
s 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个关于从另一个类中访问一个类的属性/成员的常见编程问题。
您需要获取对您尝试访问的类的实例的引用。这取决于它们的创建方式以及它们在对象图方面如何相互关联。他们有同一个父母吗?
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?