程序设计语言 第4页
程序设计相关语言,如:C语言
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佳家高级会员用户804043202个月前
0255
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佳家高级会员用户804043202个月前
0325
WindowsAPI-控件:Hotkey-C佳家

WindowsAPI-控件:Hotkey

使用WindowsAPI,创建Hotkey控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,'\'/manifestdependency:type='win3...
用户80404320的头像-C佳家高级会员用户804043202个月前
04515
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佳家高级会员用户804043202个月前
02812
WindowsAPI-控件:Edit-C佳家

WindowsAPI-控件:Edit

使用WindowsAPI,创建Edit控件:#include <windows.h> // 全局声明 HINSTANCE hInst; LPCWSTR szWindowClass = L'win32app'; LPCWSTR szTitle = L'Win32 编辑控件示例'; // 此代码模块中...
用户80404320的头像-C佳家高级会员用户804043202个月前
03311
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佳家高级会员用户804043202个月前
03215
WindowsAPI-控件:ToolBar-C佳家

WindowsAPI-控件:ToolBar

使用WindowsAPI,创建ToolBar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_TOOLBAR 201 LRESULT CALLBACK WindowProc(HWND...
用户80404320的头像-C佳家高级会员用户804043202个月前
03514
WindowsAPI-控件:GroupBox-C佳家

WindowsAPI-控件:GroupBox

使用WindowsAPI,创建GroupBox:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_GROUPBOX 101 #define ID_BUTTON 102 LRESULT CALL...
用户80404320的头像-C佳家高级会员用户804043202个月前
0335
WindowsAPI-控件:MonthCalendar-C佳家

WindowsAPI-控件:MonthCalendar

使用WindowsAPI,创建MonthCalendar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_CALENDAR 101 LRESULT CALLBACK WindowPr...
用户80404320的头像-C佳家高级会员用户804043202个月前
05512
WindowsAPI-控件:RichEdit-C佳家

WindowsAPI-控件:RichEdit

使用WindowsAPI,创建RichEdit:#include <windows.h> #include <commctrl.h> #include <richedit.h> #pragma comment(lib, 'comctl32.lib') //#pragma comment(lib, 'Msftedi...
用户80404320的头像-C佳家高级会员用户804043202个月前
05215
程序设计天梯赛题解-20分题 (C/C++)-C佳家

程序设计天梯赛题解-20分题 (C/C++)

L1-002 打印沙漏L1-006 连续因子L1-009 N个数求和L1-011 A-BL1-015 跟奥巴马一起画方块L1-016 查验身份证L1-020 帅到没朋友L1-023 输出GPLTL1-027 出租L1-032 Left-padL1-034 点赞L1-039 古风排...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
05311
程序设计天梯赛题解-15分题 (C/C++)-C佳家

程序设计天梯赛题解-15分题 (C/C++)

L1-003 个位数统计L1-005 考试座位号L1-017 到底有多二L1-019 谁先倒L1-025 正整数A+BL1-030 一帮一L1-033 出生年L1-035 情人节L1-044 稳赢L1-048 矩阵A乘以BL1-050 倒数第N个字符串L1-054 福到...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
08011