選項卡控制項SDK程式

2021-06-03 08:24:21 字數 1420 閱讀 5715

#undef unicode

#undef _unicode

#include #include #include "resource.h"

bool callback dialogproc(

hwnd hwnddlg,

uint umsg,

wparam wparam,

lparam lparam

)break;

case wm_notify:

if ( idc_tab1 == wparam )

}} break;

case wm_close:

enddialog(hwnddlg, 0);

break;

} return false;

}int winapi winmain(

hinstance hinstance,

hinstance hprevinstance,

lpstr lpcmdline,

int nshowcmd

)

rc檔案:

idd_dialog1 dialogex 0, 0, 316, 186

style ds_setfont | ds_modalframe | ds_fixedsys | ds_center | ws_popup | ws_caption | ws_sysmenu

caption "dialog"

font 8, "ms shell dlg", 400, 0, 0x1

begin

defpushbutton "ok",idok,205,165,50,14

pushbutton "cancel",idcancel,259,165,50,14

control "",idc_tab1,"systabcontrol32",0x0,7,17,302,140

endidd_page1 dialogex 0, 0, 240, 98

style ds_setfont | ds_fixedsys | ws_child | ws_sysmenu

font 8, "ms shell dlg", 400, 0, 0x1

begin

ltext "第一頁",idc_static,115,50,29,8

endidd_page2 dialogex 0, 0, 243, 96

style ds_setfont | ds_fixedsys | ws_child | ws_sysmenu

font 8, "ms shell dlg", 400, 0, 0x1

begin

ltext "第二頁",idc_static,115,50,29,8

end

選項卡控制項TabControl

1 用tabcontrol 的selectedtab屬性 if tabcontrol1.selectedtab tabpage2 2 用tabcontrol 的selectedindex 屬性 if tabcontrol1.selectedtab 1 1 用selecttab 方法 將指定的選項卡 ...

選項卡套選項卡

實現 項卡套小選項卡 項卡切換同時小選項卡也進行切換,且每次 項卡的切換是在小選項卡切換完後進行 大的外層的選項卡 大的選項卡內部有乙個小的選項卡 功能 自動切換 滑鼠經過切換 方案一 不可行 開兩個定時器,乙個控制外層選卡,乙個控制內層選卡。仔細分析發現,外層選項卡的切換是需要在內層選卡全部切換完...

vue 選項卡 typecho tabs選項卡外掛程式

在看技術文件的時候發現使用選項卡來呈現示例 是個很不錯的方式,既可以節約版面空間還清晰明了,比如下面這個簡單的vue宣告式渲染demo 實際執行效果 明顯比順序排下來好多了,剛開始在網上搜尋typecho此類外掛程式一直沒有找到,所以乾脆自己動手擼乙個,最後就在typecho的預設helloworl...