• C++ 关于ShowWindow()的疑问


    IDE: Code::Blocks 16.01

    操作系统:Windows 7 x64

    最初的代码,目的是为了隐藏窗口出现在任务栏上的图标。

     1 #include <windows.h>
     2 
     3 using namespace std;
     4 
     5 int main()
     6 {
     7     HWND hWnd;
     8 
     9     /* Retrieves a handle to the foreground window (the window with which the user is currently working). */
    10     hWnd = GetForegroundWindow();
    11 
    12     /* Hides the window and activates another window. */
    13     ShowWindow(hWnd, SW_HIDE);
    14 
    15     return 0;
    16 }

    Build > Run,确实是能隐藏。但似乎出现了一个Bug:Run之后,无法Abort!

    好吧,只能开启Windows任务管理器,看了进程,没有出现相应的进程,无奈之下,只能关闭IDE,重新打开。

    重复了几次,依旧如此!


    后来对代码稍作修改:

     1 #include <windows.h>
     2 #include <conio.h>
     3 #include <stdio.h>
     4 
     5 using namespace std;
     6 
     7 int main()
     8 {
     9     char cKey;
    10     HWND hWnd;
    11 
    12     /* Retrieves a handle to the foreground window (the window with which the user is currently working). */
    13     hWnd = GetForegroundWindow();
    14 
    15     /* Hides the window and activates another window. */
    16     ShowWindow(hWnd, SW_HIDE);
    17 
    18     cKey = getch();
    19     printf("%c 
    ", cKey);
    20 
    21     return 0;
    22 }

    Build > Run,能隐藏,Run之后,仍然无法Abort!

    好吧,开启Windows任务管理器,看了进程,相应的进程出现了,选择 > 结束进程。回到IDE,依旧无法Abort!What the hell? 还是得关闭IDE。

    不知道是IDE的问题,还是ShowWindow()的问题导致这种情况。

  • 相关阅读:
    原生JS回去顶部
    5月31日の勉強レポート
    5月30日の勉強レポート
    (转)日语自我介绍大全
    5月29日の勉強レポート
    5月28日の勉強レポート
    5月27日の勉強レポート
    5月26日の勉強レポート
    5月25日の勉強レポート
    5月24日の勉強レポート
  • 原文地址:https://www.cnblogs.com/Satu/p/8179915.html
Copyright © 2020-2023  润新知