程序设计语言共36篇
程序设计相关语言,如:C语言
WindowsAPI-控件:ProgressBar-津桥芝士站

WindowsAPI-控件:ProgressBar

使用WindowsAPI,创建ProgressBar控件:#include <windows.h> #include <commctrl.h> #define TIMER_ID 1 #pragma comment(lib, 'comctl32.lib') HWND hwndProgressBar; int c = 0;...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
03815
WindowsAPI-控件:Hotkey-津桥芝士站

WindowsAPI-控件:Hotkey

使用WindowsAPI,创建Hotkey控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,'\'/manifestdependency:type='win3...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
04215
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的头像-津桥芝士站高级会员用户8040432036天前
03015
vcpkg: Win11环境包管理工具配置教程-津桥芝士站

vcpkg: Win11环境包管理工具配置教程

安装:1. 先打开任意一个空文件夹(假设文件夹路径为: c:\src),先将vcpkg克隆到本地:git clone https://github.com/microsoft/vcpkg如果您无法克隆到本地,您可以直接下载文件并解压到空文...
Ciallo~的头像-津桥芝士站高级会员Ciallo~6天前
02715
WindowsAPI-控件:RichEdit-津桥芝士站

WindowsAPI-控件:RichEdit

使用WindowsAPI,创建RichEdit:#include <windows.h> #include <commctrl.h> #include <richedit.h> #pragma comment(lib, 'comctl32.lib') //#pragma comment(lib, 'Msftedi...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
05115
WindowsAPI-控件:SysDateTimePick32-津桥芝士站

WindowsAPI-控件:SysDateTimePick32

使用WindowsAPI,创建SysDateTimePick32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_DATETIMEPICK 101 LRESULT CALLBACK ...
Ciallo~的头像-津桥芝士站高级会员Ciallo~36天前
04114
WindowsAPI-控件:ToolBar-津桥芝士站

WindowsAPI-控件:ToolBar

使用WindowsAPI,创建ToolBar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_TOOLBAR 201 LRESULT CALLBACK WindowProc(HWND...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
03314
C++实现socket编程(Windows、Linux)-津桥芝士站

C++实现socket编程(Windows、Linux)

基本概念C++ Socket 编程是实现网络通信的一种方式,利用 Socket 接口,程序可以通过计算机网络进行数据的传输与接收。Socket 是一种用于实现通信的抽象概念,它可看作是连接网络中两个通信端点...
Ciallo~的头像-津桥芝士站高级会员Ciallo~32天前
04114
WindowsAPI-控件:MonthCalendar-津桥芝士站

WindowsAPI-控件:MonthCalendar

使用WindowsAPI,创建MonthCalendar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_CALENDAR 101 LRESULT CALLBACK WindowPr...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
05312
WindowsAPI-控件:ListView(SysListView32)-津桥芝士站

WindowsAPI-控件:ListView(SysListView32)

使用WindowsAPI,创建一个ListView控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_LISTVIEW 101 LRESULT CALLBACK WindowPro...
用户80404320的头像-津桥芝士站高级会员用户8040432036天前
02612
每日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~4小时前
04312
程序设计天梯赛题解-10分题 (C/C++)-津桥芝士站

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

L1-007 念数字L1-008 求整数段和L1-010 比较大小L1-013 计算阶乘和L1-018 大笨钟L1-022 奇偶分家L1-028 判断素数L1-031 到底是不是太胖了L1-037 A除以BL1-040 最佳情侣身高差L1-041 寻找250L1-0...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13天前
06312