程序设计语言 第2页
程序设计相关语言,如:C语言
WindowsAPI-控件:Static-津桥芝士站

WindowsAPI-控件:Static

使用WindowsAPI,创建一个static控件:#include <windows.h> #include <CommCtrl.h> #pragma comment(lib, 'comctl32.lib') // 窗口过程函数 LRESULT CALLBACK WindowProc(HWND hwn...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
03611
WindowsAPI-控件:SysTabControl32-津桥芝士站

WindowsAPI-控件:SysTabControl32

使用WindowsAPI,创建SysTabControl32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') HINSTANCE hInst; HWND hwndTab; // 标签控件句柄 ...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0407
程序设计天梯赛题解-15分题 (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~的头像-津桥芝士站高级会员Ciallo~13天前
07911
WindowsAPI-控件:Edit-津桥芝士站

WindowsAPI-控件:Edit

使用WindowsAPI,创建Edit控件:#include <windows.h> // 全局声明 HINSTANCE hInst; LPCWSTR szWindowClass = L'win32app'; LPCWSTR szTitle = L'Win32 编辑控件示例'; // 此代码模块中...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
03111
每日C++(25年):4月28日 - 5月4日-津桥芝士站

每日C++(25年):4月28日 – 5月4日

4月28日:C++14 新特性解析:std::shared_timed_mutex4月29日:C++11 新特性解析:移动语义(Move Semantics)4月30日:C++11 新特性解析:std::initializer_list5月1日:C++11 新特性解析:Lam...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
04611
Dev-Cpp 5.11 安装教程-津桥芝士站

Dev-Cpp 5.11 安装教程

注意:本教程使用的软件为:DevCpp 5.11。对于其它版本,请读者自行斟酌有效性。安装:双击安装,可以先不用选择语言:点击I Agree选择要按照的位置,点击:Install点击Finish:运行软件,选择你...
Ciallo~的头像-津桥芝士站高级会员Ciallo~1个月前
08211
WindowsAPI-控件:ComboBoxEx32-津桥芝士站

WindowsAPI-控件:ComboBoxEx32

使用WindowsAPI,创建ComboBoxEx32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define COMBOBOXEX_ID 101 HINSTANCE hInst; LRESULT...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0235
WindowsAPI-控件:Hotkey-津桥芝士站

WindowsAPI-控件:Hotkey

使用WindowsAPI,创建Hotkey控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,'\'/manifestdependency:type='win3...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
04215
每日C++(25年):6月2日 - 6月8日-津桥芝士站

每日C++(25年):6月2日 – 6月8日

6月2日:C++14 中的 std::make_uniqueh函数6月3日:C++11 : std::getline 的扩展用法6月4日:C++17 标准库: std::memory_order_consume函数6月5日:C++14 : std::exchange 函数6月6日:C++17 ...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13小时前
04312
每日C++(25年):4月14日 - 4月20日-津桥芝士站

每日C++(25年):4月14日 – 4月20日

4月14日:C++17新特性解析:MSVC编译器中的结构化绑定4月15日:C++11新特性解析:auto类型推导4月16日:C++17新特性详解:constexpr if4月17日:C++11新特性解析:decltype类型推导4月18日:C++...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
04411
WindowsAPI-控件:GroupBox-津桥芝士站

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的头像-津桥芝士站高级会员用户8040432037天前
0315
WindowsAPI-控件:Tooltips_class32-津桥芝士站

WindowsAPI-控件:Tooltips_class32

使用WindowsAPI,创建Tooltips控件:#include <windows.h> #include <commctrl.h> // Include the common controls #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0305