gpt4 book ai didi

c# - 如何确定控件的可见性?

转载 作者:可可西里 更新时间:2023-11-01 09:09:33 25 4
gpt4 key购买 nike

我有一个 TabControl 包含几个选项卡。每个选项卡都有一个 UserControl 在上面。我想检查控件的可见性 xUserControl A来自 UserControl B .我认为这样做 x.Visible来自 UserControl B就足够了。事实证明,它显示的是 false在调试器中,即使我将其明确设置为 true而且它从未改变过。然后我在 MSDN 上阅读了 Control.Visible那:

Even if Visible is set to true, the control might not be visible to the user if it is obscured behind other controls.

令我惊讶的是,这行不通。现在我想知道如何判断控件是否为 x从不同的 UserControl 可见.如果可能,我想避免使用 bool 值。有没有人遇到过这个问题并找到了解决方案?

注意:Control.IsAccessible 也出现了在这种情况下是假的。

最佳答案

不幸的是,该控件没有提供任何允许您检查它的公共(public)信息。

一种可能是在控件的“标记”属性中设置一些内容。标记的目的是将用户数据与控件相关联。所以它可以是任何东西,而不仅仅是 bool 值。

Here is the Tag property doc

如果你真的想要蛮力的方式,你可以使用反射,基本上调用 GetState(2):

public static bool WouldBeVisible(Control ctl) 
{
// Returns true if the control would be visible if container is visible
MethodInfo mi = ctl.GetType().GetMethod("GetState", BindingFlags.Instance | BindingFlags.NonPublic);
if (mi == null) return ctl.Visible;
return (bool)(mi.Invoke(ctl, new object[] { 2 }));
}

关于c# - 如何确定控件的可见性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5980343/

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