-
基于多文档的绘制曲线程序,动态生成多个绘制曲线窗口,生成的曲线可通过鼠标选定区域放大缩小,
各曲线绘制窗口可选择切换。...
基于多文档的绘制曲线程序,动态生成多个绘制曲线窗口,生成的曲线可通过鼠标选定区域放大缩小,
各曲线绘制窗口可选择切换。-the program is based on MULTIWINDOW interface used to draw curves, and the window is created dynamically and controllably.
Any part of the curves on the windows can be amplified and can return back to the base size.
- 2023-01-01 15:05:03下载
- 积分:1
-
在MFC多线程示例
multi threading sample in mfc
- 2022-03-21 10:43:05下载
- 积分:1
-
No proper information of uploading
No proper information of uploading
- 2022-12-20 03:15:03下载
- 积分:1
-
通讯录管理系统,能够实现人员的信息录入、查询、修改、删除、保存、显示等操作。要求利用菜单的形式进行管理。...
通讯录管理系统,能够实现人员的信息录入、查询、修改、删除、保存、显示等操作。要求利用菜单的形式进行管理。-Address book management system, enables personnel information input, query, modify, delete, save, display and other operations. Require the use of the menu in the form of management.
- 2023-02-24 09:10:04下载
- 积分:1
-
人体皮肤检测 Ycbcr
输入位图和使用像素阵列、 保存像素值和得到像素到 Ycbcr 阵列就可以使人体皮肤的 RGBuse RGB 数组
- 2022-11-05 08:05:03下载
- 积分:1
-
类似media player的具有自动隐藏菜单栏的程序
类似media player的具有自动隐藏菜单栏的程序-similar media player with a hidden menu bar automatic procedures
- 2022-03-13 04:49:22下载
- 积分:1
-
Android控件的动画效果的实现及其AnimationListener和Interpolator的使用方法
Android控件的动画效果的实现及其AnimationListener和Interpolator的使用方法,动画效果很好看,可以参考一下,andriod下的java开发界面开发,主要是用的 AnimationListener和Interpolator的功能
- 2022-02-14 11:44:37下载
- 积分:1
-
MFC进程之间的单管道传输
资源描述
进程之间的单管道数据传输
操作平台:win10+vs2013 pro
运行结果:
1、字符与宽字符之间的转换
//宽字符转字符
void TcharToChar(const TCHAR * tchar, char * _char)
{
int iLength;
//获取字节长度
iLength = WideCharToMultiByte(CP_ACP, 0, tchar, -1, NULL, 0, NULL, NULL);
//将tchar值赋给_char
WideCharToMultiByte(CP_ACP, 0, tchar, -1, _char, iLength, NULL, NULL);
}
//字符转宽字符
void CharToTchar(const char * _char, TCHAR * tchar)
{
int iLength;
iLength = MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, NULL, 0);
MultiByteToWideChar(CP_ACP, 0, _char, strlen(_char) + 1, tchar, iLength);
}
2、创建进程及单管道传输
void CDemoDlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
//管道相关
HANDLE hPWrite, hPRea
- 2022-03-06 10:20:16下载
- 积分:1
-
可任意改变对话框大小和控件大小的类,包含测试代码
可任意改变对话框大小和控件大小的类,包含测试代码,非常适合界面开放,会有意想不到的效果
- 2022-08-20 10:38:47下载
- 积分:1
-
scrollJpane的运用实例!利用ScrollBar的功能使它可以利用滚动轴滚动窗口,乍看之下我们并不会直接使用到,JScrollBar的方法,因为JScr...
scrollJpane的运用实例!利用ScrollBar的功能使它可以利用滚动轴滚动窗口,乍看之下我们并不会直接使用到,JScrollBar的方法,因为JScrollPane都帮我们处理得好好的,但如果我们想对滚动轴做更细的设置,例如在拖曳时一次滚动多少区域等,就必须了JScrollBar所提供的功能了。JScrollBar在处理窗口的滚动并不像JScrollPane那么容易,看起来也比 JScrollPane简单得许多,因此通常在实现时我们会取一些JScrollBar所提供的功能.-scrollJpane examples of the use! ScrollBar use of the function so that it could use the rolling axis scroll window, and at first glance w ill not be directly used. JScrollBar method because JScrollPane have helped us to deal with good, but if we want to do more rolling axis small settings, such as when a tractor in the number of regional rolling, a must JScrollBar provided by the function. JScrollBar window in the rolling JScrollPane is not as easy than JScrollPane seem simple that many, it is often the realization, we will take some JScrollBar provided by the function.
- 2023-03-28 05:35:03下载
- 积分:1