⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cpp

📁 USB 上位机程序 VNA使用,网络分析仪原理使用仪器
💻 CPP
字号:
#include "stdafx.h"
#include "Form1.h"
#include <windows.h>

using namespace VNAR3;

[STAThreadAttribute]
int APIENTRY _tWinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPTSTR    lpCmdLine,
                     int       nCmdShow)
{
//	System::Threading::Thread::CurrentThread->ApartmentState = System::Threading::ApartmentState::STA;
//	System::Threading::Thread::CurrentThread->SetApartmentState(System::Threading::ApartmentState::STA);
	Application::EnableVisualStyles();		// Enable XP-themed buttons on forms if available
											// Requires each button FlatStyle property to be set to System
	Application::Run(new Form1(lpCmdLine));
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -