【VC++】如何最大化对话框

一打开一个对话框程序,对话框就最大化,并且要求没有标题栏,没有右上角的关闭,最大化,最小化等按钮,总之就是全屏显示的对话框如何实现?请给出代码,或者链接也行。谢谢答案选中... 一打开一个对话框程序,对话框就最大化,并且要求没有标题栏,没有右上角的关闭,最大化,最小化等按钮,总之就是全屏显示的对话框

如何实现?请给出代码,或者链接也行。谢谢

答案选中加30
展开
 我来答
joychen_
推荐于2016-05-09 · TA获得超过1747个赞
知道大有可为答主
回答量:1617
采纳率:100%
帮助的人:1828万
展开全部
1. API方式:
    可以通过 ShowWindow 函数改变窗口的显示状态。语法为:
  BOOL ShowWindow( HWND hWnd,

  int nCmdShow
  );
  hWnd 表示窗口句柄
  nCmdShow 表示想要显示的状态。SW_MAXIMIZE表示最大化,SW_HIDE表示隐藏等等。
2. MFC方式:
  如果是MFC程序,可以使用 CWnd类的 ShowWindow( int nCmdShow ) 方法,状态参数与API一致。

状态参数还可以取以下数值(详情也可参考MSDN):

SW_HIDE Hides this window and passes activation to another
window.

SW_MINIMIZE Minimizes the window and activates the top-level window
in the system's list.

SW_RESTORE Activates and displays the window. If the window is
minimized or maximized, Windows restores it to its original size and
position.

SW_SHOW Activates the window and displays it in its current size and
position.

SW_SHOWMAXIMIZED Activates the window and displays it as a maximized
window.

SW_SHOWMINIMIZED Activates the window and displays it as an
icon.

SW_SHOWMINNOACTIVE Displays the window as an icon. The window that
is currently active remains active.

SW_SHOWNA Displays the window in its current state. The window that
is currently active remains active.

SW_SHOWNOACTIVATE Displays the window in its most recent size and
position. The window that is currently active remains active.

SW_SHOWNORMAL Activates and displays the window. If the window is
minimized or maximized, Windows restores it to its original size and
position.
  

  
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友ae3e84a
2009-03-09 · 超过46用户采纳过TA的回答
知道小有建树答主
回答量:340
采纳率:0%
帮助的人:187万
展开全部
把你的邮箱给我
我发给你
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式