上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页
转载:https://www.cnblogs.com/zzyoucan/p/3570493.html?utm_source=tuicool&utm_medium=referral C++ primer 上面的一个例子: 1 // constRef.cpp : 定义控制台应用程序的入口点。 2 // Read More
posted @ 2020-09-25 17:03 _KikyoBK Views(295) Comments(0) Diggs(0) Edit
调用Shell_NotifyIcon创建托盘图标时,PNOTIFYICONDATAA参数 这里的uID设为不同的值即可 这个参数: 调用Shell_NotifyIcon时,Shell用hWnd加uID,或者用guidItem来识别应该操作哪一个图标。通过设置不同的uID,就可以让多个图标对应一个hW Read More
posted @ 2020-09-01 16:52 _KikyoBK Views(211) Comments(0) Diggs(0) Edit
转载:https://www.cnblogs.com/qinduanyinghua/p/11440852.html 1 string add(string s1, string s2) { 2 int len1 = s1.length(), len2 = s2.length(); 3 int max Read More
posted @ 2020-08-31 20:32 _KikyoBK Views(393) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/weixin_39345003/article/details/80782218 1.DLL文件 DLL(Dynamic Link Library)文件为动态链接库文件,又称“应用程序拓展”,是软件文件类型。在Windows中,许多应用程序并不是一个 Read More
posted @ 2020-08-19 20:47 _KikyoBK Views(327) Comments(0) Diggs(0) Edit
转载:https://www.write-bug.com/article/1953.html StretchBlt函数 从源矩形中复制一个位图到目标矩形,必要时按目标设备设置的模式进行图像的拉伸或压缩。 函数声明 BOOL StretchBlt( HDC hdcDest, int nXOriginD Read More
posted @ 2020-08-04 15:21 _KikyoBK Views(1234) Comments(0) Diggs(0) Edit
AlphaBlend BLENDFUNCTION bf = {AC_SRC_OVER, 0, 255, AC_SRC_ALPHA}; ::AlphaBlend(.......) Read More
posted @ 2020-08-03 22:21 _KikyoBK Views(157) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/wuguai4/article/details/7287346 配置文件中经常用到ini文件,在VC中其函数分别为:写入.ini文件: BOOL WritePrivateProfileString( LPCTSTR lpAppName, // INI Read More
posted @ 2020-08-03 13:51 _KikyoBK Views(177) Comments(0) Diggs(0) Edit
转载:https://www.write-bug.com/article/1574.html 总结:使用TransparentBlt 函数,指定透明色 函数介绍 TransparentBlt 函数 对指定的源设备环境中的矩形区域像素的颜色数据进行位块(bit_block)转换,并将结果置于目标设备环 Read More
posted @ 2020-07-31 20:52 _KikyoBK Views(910) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/jolin678/article/details/49364809 字符分类: 宽字符函数普通C函数描述 iswalnum() isalnum() 测试字符是否为数字或字母 iswalpha() isalpha() 测试字符是否是字母 iswcntr Read More
posted @ 2020-07-04 11:43 _KikyoBK Views(269) Comments(0) Diggs(0) Edit
转载:https://blog.csdn.net/martin216/article/details/89327554 在c语言中,我们可以通过%d、%o 和%x 输出二进制、八进制和十六进制数。而在c++中则通过 iostream 头文件中提供的不同的控制符来达到不同的输出: dec:表示cout Read More
posted @ 2020-06-24 16:49 _KikyoBK Views(3196) Comments(0) Diggs(0) Edit
上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页