在C#中使用热键隐含窗口(3) public string Title { get{return m_Title;} } public string Process { get{return m_Process;} }
/// <summary> /// Sets this Window Object's visibility /// </summary> public bool Visible { get{return m_Visible;} set { //show the window if(value == true) { if(m_WasMax) { if(ShowWindowAsync(m_hWnd,SW_SHOWMAXIMIZED)) m_Visible = true;