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

WindowsAPI-控件:SysHeader32

使用WindowsAPI,创建SysHeader32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_HEADER 101 LRESULT CALLBACK WindowProc(H...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
02611
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
每日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-控件:TrackBar-津桥芝士站

WindowsAPI-控件:TrackBar

使用WindowsAPI,创建TrackBar控件:#include <windows.h> #include <commctrl.h> #include <stdio.h> #pragma comment(lib, 'comctl32.lib') #define ID_TRACKBAR 101 #defi...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
03015
每日C++(25年):6月合集-津桥芝士站

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

6月1日:C++20 : std::atomic::wait 和 std::atomic::notify_one/notify_all6月2日:C++14 中的 std::make_unique函数6月3日:C++11 : std::getline 的扩展用法6月4日:C++17 标准库: std::mem...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13小时前
0527
WindowsAPI-控件:SysPager与ToolbarWindow32-津桥芝士站

WindowsAPI-控件:SysPager与ToolbarWindow32

使用WindowsAPI,创建SysPager和ToolbarWindow32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define WINDOW_CLASS_NAME L'SampleWin...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0516
程序设计天梯赛题解-20分题 (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~的头像-津桥芝士站高级会员Ciallo~13天前
05211
C++: <algorithm> 算法相关头文件-津桥芝士站

C++: <algorithm> 算法相关头文件

函数名站内文章/帖子备注std::sample()C++17 : std::sample函数——————               
Ciallo~的头像-津桥芝士站高级会员Ciallo~14小时前
0529
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-控件: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-控件:Edit-津桥芝士站

WindowsAPI-控件:Edit

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

每日C++(25年):4月21日 – 4月27日

4月21日:C++11新特性解析:alignas 和 alignof 关键字:掌控内存对齐的利器4月22日:C++14 新特性解析:自定义字面量(User-defined Literals)4月23日:C++11 新特性介绍:范围 for 循环(Ran...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
0487