Can someone tell me some more details about the WindowsFormsParkingWindow?In
my application (C#) in full screen mode I must deal with the
WindowsFormsParkingWindow.After I switched to full screen mode and click on
a child form (after some time) then the WindowsFormsParkingWindow
appears.See the code: /// <summary>
/// Switch the client to full screen or normal
display mode
/// </summary>
public bool FullScreen
{
get { return m_infullscreenmode; }
set
{
if(m_infullscreenmode !=
value) // only commence if the current mode is different from the
desired mode.
{
m_infullscreenmode = value;
if(m_infullscreenmode)
{
this.Menu = null;
if(this.WindowState == FormWindowState.Maximized) //gu (new) srs 211
this.WindowState = FormWindowState.Normal;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
panel1.Visible = false;
mFullScreen.Checked = true;
Displays.FullScreenSize(this);
}
else
{
this.mHide.Visible = false;
mFullScreen.Checked = false;
this.Menu = MainMenu;
panel1.Visible = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
}
if(mFullScreen.Checked) MLog.Info(3, "client.fullscreen");
else
MLog.Info(3, "client.normalscreen");
}
}
}