-
类的设计学习,构造函数和析构函数的设计学习
类的设计学习,构造函数和析构函数的设计学习-Type of design study, constructor and destructor of the design of learning
- 2022-01-22 08:04:35下载
- 积分:1
-
DSPTI C6000 ZBTRAM的使用历程,初学者必读
DSPTI C6000 ZBTRAM的使用历程,初学者必读-DSPTI C6000 ZBTRAM the use of the course, the required reading beginners
- 2022-02-18 15:02:09下载
- 积分:1
-
vb开发的成绩管理系统
vb开发的成绩管理系统-vb development of the performance management system
- 2022-01-27 21:05:11下载
- 积分:1
-
个个人自娱乐的扑克牌游戏 ,希望大家能够得到一定的帮助
个个人自娱乐的扑克牌游戏 ,希望大家能够得到一定的帮助-individuals from the entertainment poker games, we hope to get some help! !
- 2022-01-26 15:56:37下载
- 积分:1
-
S3C2410开发板的一些封装,对于喜欢PCB的朋友可能有用
S3C2410开发板的一些封装,对于喜欢PCB的朋友可能有用-PACKAGE OF S3C2410
- 2023-07-11 11:00:03下载
- 积分:1
-
用于文本分类,自动使用文本分类监管…
用于文本分类,自动使用文本分类监督培训
- 2023-02-24 22:25:02下载
- 积分:1
-
贪吃蛇,还有点问题,希望各位网友可以提出改进的方法
贪吃蛇,还有点问题,希望各位网友可以提出改进的方法-Snake, there are points in the hope that netizens can improve the way
- 2022-01-24 12:40:14下载
- 积分:1
-
讲述了用proel进行电路板设计的具体流程,以及每一步的优化。...
讲述了用proel进行电路板设计的具体流程,以及每一步的优化。-Proel carried out on the circuit board with the design of specific processes, as well as the optimization of each step.
- 2022-06-01 19:31:37下载
- 积分:1
-
实现数控电压源的精确控制,从0――15V
实现数控电压源的精确控制,从0――15V-NC precise control of voltage source, from 0- 15V
- 2022-04-17 05:26:46下载
- 积分:1
-
VC++ 6.0简单屏幕画笔源代码
VC++ 6.0简单屏幕画笔源代码 ,可以让用户直接在屏幕的任意地方写字,仿画图的功能,不过这个不是在指定的画图窗口中才能画出图形,而是打开后,在屏幕的任意地方都可以。而且还可以设置画笔的颜色,有四种颜色可选,还可设置画笔粗细等功能。以下请看画笔的设置部分代码:
void CMyWnd::OnRed()//选中绿色
{
ColorX=255;
ColorY=0;
ColorZ=0;
}
void CMyWnd::OnYellow()//选中黄色
{
ColorX=255;
ColorY=255;
ColorZ=0;
}
void CMyWnd::OnGreen() //选中绿色
{
ColorX=0;
ColorY=255;
ColorZ=0;
}
void CMyWnd::OnBlue() //选中蓝色
{
ColorX=0;
ColorY=0;
ColorZ=255;
}
void CMyWnd::OnAdd() //增加画笔大小
{
ADxy+=1;
}
void CMyWnd::OnDec() //增加画笔大小
{
if (ADxy!=1)
ADxy-=1;
}
void CMyWnd::OnAbout() //增加画笔大小
{
//AfxMessageBox("你好");
//显示关于对话框
CLjxDlg dlg;
int xxx=dlg.DoModal();
}
- 2022-11-18 14:20:03下载
- 积分:1