形式可以知道是否有任何模式窗口打开?有任何、形式、窗口、模式

2023-09-03 12:00:21 作者:貪得無厭

怎么样,是我的WinForm的应用程序的主窗口中我可以告诉大家,如果有属于主窗体的任何模态窗口/对话框打开?

解决方案

 如果(THIS.VISIBLE&安培;&安培;!this.CanFocus)
{
    //模式子窗口打开
}
 

How, being inside the main form of my WinForm app can I tell if there are any modal windows/dialogs open that belong to the main form?

解决方案 PS打开图像后不是窗口模式,请问怎么才能把图像变为窗口模式,同时处理两张图片 合成

if (this.Visible && !this.CanFocus)
{
    // modal child windows are open
}