?? 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 + -