📄 win32apriori.cpp
字号:
#include "stdafx.h"
#include "main_dlg.h"
#include "resource.h"
using namespace win32::gui;
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow) {
wnd<> top = create_wnd<sdi_frame>("Apriori Algorithm", null_wnd, create_info().menu(ID_main_menu) );
wnd<dialog> dlg = create_dlg<main_dlg>(top);
dlg->resize_parent_to_fit_dlg_size();
top->wait();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -