ShowWindow()函数的使用疑惑
ShowWindow( )函数到底怎么使用的为什么使用
GetDlgItem(IDC_PROGRESS_SEND_FILE)->ShowWindow(SW_HIDE);或者
GetDlgItem(IDC_PROGRESS_SEND_FILE)->ShowWindow(SW_SHOW);这个对话框钟的按钮控件(IDC_PROGRESS_SEND_FILE)一直都是显示的呢 ?而MSDN钟
SW_HIDE Hides this window and passes activation to another window.
SW_SHOW Activates the window and displays it in its current size and position.
怎么理解呢?不是说设置成 SW_HIDE 时会隐藏 对应个窗口的吗?