標籤控制項 CTableCtrl 控制項

2021-08-03 23:36:36 字數 837 閱讀 3105

前言:

區別:ctablectrl和cpropertysheet.《乙個是控制項,另乙個是對話方塊屬性類》

目錄:0.訊息彙總

1.常用方法總結:

0.訊息彙總

1.常用方法總結;

定義視窗資源以及和類進行相關繫結物件兩個,標籤控制項新增兩個子項.建立視窗,設定相關區域,移動視窗.

原始碼:m_tab.insertitem(0, "員工資訊管理", 0);//向標籤控制項中新增選項卡

m_tab.insertitem(1, "員工查詢", 1);

m_employee.create(idd_employee_dialog, &m_tab);//建立子視窗

m_query.create(idd_query_dialog, &m_tab);

crect clientrc;

m_tab.getclientrect(clientrc);//獲取   標籤   客戶區域《為了後面縮小被選入視窗的區域,不然遮擋就選不了了》

clientrc.deflaterect(2, 30, 2, 2);//減少客戶區域大小

m_employee.movewindow(clientrc);//移動子視窗

m_query.movewindow(clientrc);//移動子視窗

m_employee.showwindow(sw_show);//顯示子視窗

m_tab.setcursel(0);//設定預設選中的標籤頁

return true;  // return true  unless you set the focus to a control

getcursel

setimagelist

TextView 標籤控制項

常用 android text 顯示文字內容 android textcolor 文字的顏色 android textsize 文字的大小 android textstyle 字型樣式 bold,italic android maxlength 允許的最大字元數 android password 是...

Weex 標籤控制項

1.滾動元件 template scroller div repeat text text div scroller template script module.exports script 2.輸入框 type text,password,url,email,tel etc,w3c標準 valu...

C 窗體控制項 標籤控制項Label

visual studio附帶的許多控制項。這些控制項擁有各種功能,通過visual studio的設計功能,開發使用者介面 處理使用者的互動將非常簡單 有趣。在使用windows窗體時,就是在使用system.windows.forms命名空間。這個命名空間使用using指令包含在儲存form類的...