gpt4 book ai didi

visual-c++ - 如何让C++程序自动最大化运行?

转载 作者:行者123 更新时间:2023-12-03 22:45:19 25 4
gpt4 key购买 nike

我需要知道 C++ 程序是否有代码可以自动最大化程序窗口,因为我在运行程序时总是要最大化窗口。
我正在使用 Windows 7。

我对 C++ 非常陌生。

有人能帮我吗?谢谢。

最佳答案

试试这个它会工作

#include "stdafx.h"
#include "conio.h"
#include "Windows.h"
#include "tchar.h"

int _tmain(int argc, _TCHAR* argv[])
{
//Write Your Code HERE//
HWND hWnd;
SetConsoleTitle(_T("test"));
hWnd = FindWindow(NULL, _T("test"));
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
COORD NewSBSize = GetLargestConsoleWindowSize(hOut);
SMALL_RECT DisplayArea = {0, 0, 0, 0};

SetConsoleScreenBufferSize(hOut, NewSBSize);

DisplayArea.Right = NewSBSize.X - 1;
DisplayArea.Bottom = NewSBSize.Y - 1;

SetConsoleWindowInfo(hOut, TRUE, &DisplayArea);

ShowWindow(hWnd, SW_MAXIMIZE);
_getch();
return 0;
}

它将在最大化窗口中显示您的输出。

关于visual-c++ - 如何让C++程序自动最大化运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12061401/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com