登录
首页 » 界面开发 » PXA310 DATASHEET_4,

PXA310 DATASHEET_4,

于 2022-03-07 发布 文件大小:1.80 MB
0 80
下载积分: 2 下载次数: 1

代码说明:

PXA310 DATASHEET_4, -PXA310 DATASHEET_4, PXA310 DATASHEET_4,

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

发表评论


0 个回复

  • VCLSkins 是windows编程常用的换肤控件。非常实用!有了它,你就可以让你的程序添加万种色彩!...
    VCLSkins 是windows编程常用的界面换肤控件。非常实用!有了它,你就可以让你的程序添加万种色彩!-VCLSkins is commonly used in windows programming interface control skin. Very useful! With it, you can let you add the 10,000 kinds of colors!
    2022-02-25 04:21:10下载
    积分:1
  • MFC创建进程、打进程、终止进程
    资源描述 创建进程、打开进程、终止进程 *两个函数 CreateProcess、openProcess、TerminateProcess *获得进程句柄 *获得进程号 *提升进程权限 *Microsoft Spy++ 操作平台:win10+vs2013 pro 操作步骤: 1、创建进程 PROCESS_INFORMATION pi;//进程信息结构 STARTUPINFO si;//启动信息结构 memset(&si, 0, sizeof(si)); si.cb = sizeof(si); si.wShowWindow = SW_SHOW; si.dwFlags = STARTF_USESHOWWINDOW; TCHAR szPath[] = TEXT("c:windowssystem32 otepad.exe E:c++MFCa.txt"); BOOL bRet = ::CreateProcess(NULL, szPath, NULL, FALSE, NULL, NULL, NULL, NULL, &si, &pi); int error = GetLastError(); if (bRet) { ::CloseHandle(pi.hThread); ::CloseHandle(pi.hProcess); AfxMessageBox(TEXT("创建进程成功")); } else { AfxMessageBox(TEXT("创建进程失败")); } 2、打开进程 DWORD pid; //若有指定窗口类和窗口名称则表示成功返回一个窗口的句柄 HWND hCalc = ::FindWindow(TEXT("Note
    2022-03-25 15:36:01下载
    积分:1
  • 展示单和多文档上带有背景Bar
    展示单和多文档上带有背景Bar-display of single-and multi-document with background on the Bar
    2022-02-15 02:53:22下载
    积分:1
  • 一直以来,Windows应用程序是基于GDI/User 窗口结构的,而这个结构限制了不少地方。当你尝试使用这个内建的控件集,然后简单迅速地得到了一个非常非常漂亮...
    一直以来,Windows应用程序是基于GDI/User 窗口结构的,而这个结构限制了不少地方。当你尝试使用这个内建的控件集,然后简单迅速地得到了一个非常非常漂亮的应用程序的之后,你就会理解这个限制。 一个无窗体的用户界面并不使用原始的Win32控件。取而代之的是,给屏幕上的每个控件定制图像显示:包括标签、按钮、列表框等等。使用这一种接口以及不是最新的了:大部分很酷的程序都开始“皮肤”,比如WinAmp和MS Media Player。不过skinning只适合一些小的应用程序,它们拥有很少的对话框。如果你正在做一个数据库驱动的程序,你需要一个固定的框架.-All along, Windows applications are based on GDI/User window structure, and this structure limits in many areas. When you try to use the built-in control set, and then simply and rapidly got a very, very nice application, you ll understand this limit. A free form user interface does not use the original Win32 controls. Instead, to customize the on-screen image display for each control: including labels, buttons, list boxes and so on. Use this kind of interface and not up to date: the majority of programs have begun to cool "skin" such as WinAmp, and MS Media Player. But skinning is only suitable for small applications, they have very little dialog box. If you re doing a database-driven program, you
    2022-03-01 03:08:18下载
    积分:1
  • 一些简单硬件资料合集 已经用vb编辑出来了,请尊重版权
    一些简单硬件资料合集 已经用vb编辑出来了,请尊重版权-some simple hardware information Collection has spent editing out vb, please respect for copyright
    2022-02-11 20:13:09下载
    积分:1
  • 这是一个显示目录树的树形列表控件,希望对你有帮助
    这是一个显示目录树的树形列表控件,希望对你有帮助-This is a display directory tree tree list control, want to help you
    2022-03-11 21:55:28下载
    积分:1
  • 静态标定软件_MFC版
    点击 MFC.exe 就可以运行程序。 有两种输入数据的方式。 $1. 文件输入 $1.1 比如我先把数据放在文件apple.txt中(这个txt文件要和MFC.exe文件放在同一个文件夹里,同时 txt里面的输入格式必须参照模板:apple.txt) $1.2 例子:我要读取apple.txt里面的数据。 打开MFC.exe,在界面的左上方就会看到"1.读取文件",输入标定点的数目:这个例子中是6; 输入正反行程次数总和:这个例子中是6;输入txt文件名:这个例子中是apple.txt(不要忘记后缀txt)。 然后点击右下方的“运行”按钮,就可以看到结果。此时,点击“K=3”那个选择框,然后再点击“运行” 按钮,可以看到K=3时的重复性; 以上是第一种方法。 $2. 界面中输入 $2.1 在界面汇总依次输入数据(此时要求标定点X的个数必须是6,标定点Y的个数必须是36) $2.2 这个例子可以参照压缩包文件中的说明。
    2022-08-16 08:02:06下载
    积分:1
  • repaint static control button. Static Controls on the same multiple
    重绘了静态控件按钮.同一静态控件上出现多个超连接,同样使用的API,测试使用MFC!-repaint static control button. Static Controls on the same multiple-Link, use the same APIs, testing the use of MFC!
    2022-03-20 23:43:48下载
    积分:1
  • 读股票卡数据画K线图
    读股票卡数据画K线图-read data card stock painted map K
    2023-05-24 23:35:03下载
    积分:1
  • 列表视图组件能够以多种形式来显示文件信息。
    列表视图组件能够以多种形式来显示文件信息。-components can be shown in various forms to file information.
    2022-04-24 19:30:51下载
    积分:1
  • 696518资源总数
  • 105018会员总数
  • 5今日下载