C++ 第10页
C++
WindowsAPI-控件:TrackBar-C佳家

WindowsAPI-控件:TrackBar

使用WindowsAPI,创建TrackBar控件:#include <windows.h> #include <commctrl.h> #include <stdio.h> #pragma comment(lib, 'comctl32.lib') #define ID_TRACKBAR 101 #defi...
用户80404320的头像-C佳家用户804043201年前
03515
WindowsAPI-控件:Edit-C佳家

WindowsAPI-控件:Edit

使用WindowsAPI,创建Edit控件:#include <windows.h> // 全局声明 HINSTANCE hInst; LPCWSTR szWindowClass = L'win32app'; LPCWSTR szTitle = L'Win32 编辑控件示例'; // 此代码模块中...
用户80404320的头像-C佳家用户804043201年前
03511
WindowsAPI-控件:Tooltips_class32-C佳家

WindowsAPI-控件:Tooltips_class32

使用WindowsAPI,创建Tooltips控件:#include <windows.h> #include <commctrl.h> // Include the common controls #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,...
用户80404320的头像-C佳家用户804043201年前
0345
每日C++(26年):6月15日 – 6月21日-C佳家

每日C++(26年):6月15日 – 6月21日

6月15日:forward_list:std::forward_list::insert_after6月16日:forward_list:std::forward_list::emplace_after6月17日:forward_list:std::forward_list::erase_after6月18日:forward_l...
Ciallo~的头像-C佳家高级会员Ciallo~17小时前
03314
每日C++(26年):6月合集-C佳家

每日C++(26年):6月合集

6月1日:deque:std::deque::erase6月2日:deque:std::deque::push_back6月3日:deque:std::deque::emplace_back6月4日:deque:std::deque::pop_back6月5日:deque:std::deque::push_front6...
Ciallo~的头像-C佳家高级会员Ciallo~5天前
0318
WindowsAPI-控件:ListView(SysListView32)-C佳家

WindowsAPI-控件:ListView(SysListView32)

使用WindowsAPI,创建一个ListView控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_LISTVIEW 101 LRESULT CALLBACK WindowPro...
用户80404320的头像-C佳家用户804043201年前
03012
WindowsAPI-控件:ComboBoxEx32-C佳家

WindowsAPI-控件:ComboBoxEx32

使用WindowsAPI,创建ComboBoxEx32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define COMBOBOXEX_ID 101 HINSTANCE hInst; LRESULT...
用户80404320的头像-C佳家用户804043201年前
0285