登录
首页 » 界面开发 » 实时绘制曲线程序,非常漂亮的界面,可用于长时间数据采集等大数量数据可视化显示工程中。...

实时绘制曲线程序,非常漂亮的界面,可用于长时间数据采集等大数量数据可视化显示工程中。...

于 2022-03-04 发布 文件大小:235.54 kB
0 186
下载积分: 2 下载次数: 1

代码说明:

实时绘制曲线程序,非常漂亮的界面,可用于长时间数据采集等大数量数据可视化显示工程中。-the program is used to draw curves at real time with very beatiful window. It is very suitable to make great amount data visible on the window.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 这个类库提供了在运行时动态改变控件大小的能力,就像Visual Studio做资源时那样拖动即可。但它的缺点是当鼠标拖动较快时,缩放会跟不上鼠标移动。你可以试着...
    这个类库提供了在运行时动态改变控件大小的能力,就像Visual Studio做资源时那样拖动即可。但它的缺点是当鼠标拖动较快时,缩放会跟不上鼠标移动。你可以试着修正这个bug。 。-the class library provided at runtime dynamic change controls the size of abilities, like Visual Studio resources to do so may drag. But the drawback is that when the mouse Drag quickly, the scaling will be unable to keep up with the mouse movement. You can try to fix this bug. .
    2022-04-30 08:38:01下载
    积分:1
  • 隐藏窗口的实例,可以对任意窗口操作,请试一试,里有SDK的函数...
    隐藏窗口的实例,可以对任意窗口操作,请试一试,里面有SDK的函数-window hidden example, can operate on any window, please try, and they SDK functions
    2022-02-25 14:12:22下载
    积分:1
  • 演示了一个通用的程序不规则的实现方法.
    演示了一个通用的程序不规则界面的实现方法.-Demonstration of a common procedure for irregular interface methods realize.
    2022-03-25 00:06:10下载
    积分:1
  • 动态增加状态条及其他控件
    动态增加状态条及其他控件-dynamic increase of the state and other controls
    2022-03-24 23:51:09下载
    积分:1
  • 动态生成工具栏代码
    用MFC实现了工具栏的动态生成功能。该工具栏的基本元素为按钮,可为该按钮设置背景图片,下拉菜单以及按钮被按下以及菜单被选中的响应函数。其中,按钮使用CbuttonSt改写而来。
    2022-05-30 06:04:15下载
    积分:1
  • c++builder设计鼠标游戏
    应用背景利用c++ builder 6.0事件消息完成鼠标点击消息,完成游戏的综合实例,在该实例中,将综合学习鼠标的操作和各种组件的使用。关键技术通过测定鼠标的落点,来判断随机出现的苍蝇是否被砸死。例如点击鼠标左键或右键,完成事件的响应。
    2022-11-05 03:45:02下载
    积分:1
  • 高级顶层窗口是一种无标题栏、菜单、工具条的一种常居顶层的窗口,最常见的例子就是输入法窗口,比如智能ABC窗口。这类窗口的特点除了上边所说的,最重要的就是窗口移动...
    高级顶层窗口是一种无标题栏、菜单、工具条的一种常居顶层的窗口,最常见的例子就是输入法窗口,比如智能ABC窗口。这类窗口的特点除了上边所说的,最重要的就是窗口移动。普通窗口移动是通过标题栏由系统自动实现的,对于这类窗口就无法依靠系统了,需要手工实现。实现的方法有两种: 手工处理WM_MOVE、WM_LBUTTONUP消息,并根据鼠标的移动自己实现窗口移动过程中的绘制; 在WM_MOVE消息处理函数中通过向自己发送参数wParam为HTCAPTION lParam为鼠标位置的WM_NCLBUTTONDOWN消息实现窗口移动,此时窗口移动过程的绘制由系统实现。 显然,后者较前者简单。本文采用后者。-top window is a non-title bar, menus, tools of a regular Habitat top of the window, the most common example is the input window, such as smart window ABC. This window features in addition to the upside, the most important thing is moving the window. General Mobile through the window title bar automatically by the system for such window will not be able to rely on the system, and will need to achieve manually. Implementation of two ways : manual processing WM_MOVE, WM_LBUTTONUP news, and in accordance with the movement of the mouse to achieve their mobile window in the process of drawing; In WM_MOVE message processing function to send itself through the parameters wParam HTCAPTION
    2022-08-06 00:41:04下载
    积分:1
  • The previous example of a follow
    前一个例子的后续章节,讲解VB编程解构的-The previous example of a follow-up chapters to explain the VB programming deconstruction
    2022-03-25 08:21:33下载
    积分:1
  • 流程设计程序
    资源描述 支持在视图上任意编辑图元,设置图元的属性等。可编辑的图元包括文字、图片、多边形等类似visio软件,但可以定义每个图元自己的属性。图元之间还可以结合使用。 // FlowcharterView.h : interface of the CFlowcharterView class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_FLOWCHARTERVIEW_H__50CDD008_9534_443D_8161_E058963BE0B8__INCLUDED_) #define AFX_FLOWCHARTERVIEW_H__50CDD008_9534_443D_8161_E058963BE0B8__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "FlowchartEditor/FlowchartEditor.h" class CFlowcharterView : public CView { protected: // create from serialization only CFlowcharterView(); DECLARE_DYNCREATE(CFlowcharterView) // Attributes public: CFlowcharterDoc* GetDocument(); // Operations public:
    2022-01-22 07:18:46下载
    积分:1
  • STM32液晶显示start stop字符
    资源描述背景为红色,字为白色,初学STM Keil编程参考程序
    2022-07-10 13:15:57下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载