08 2015 档案

摘要:1.在对话框窗体构造函数加入 SystemDialog::SystemDialog(QWidget *parent) : QDialog(parent), ui(new Ui::SystemDialog) { ui->setupUi(this); Qt::WindowFlags flags=Qt:: 阅读全文
posted @ 2015-08-27 14:05 ike_li 阅读(435) 评论(0) 推荐(0)
摘要:#include "stdafx.h" #include #include #include #include #include using namespace std; LPWSTR StringToLPWSTR(string s) { const char * szString = s.c_str(); int dwLen = strlen(szString) +... 阅读全文
posted @ 2015-08-24 15:22 ike_li 阅读(1197) 评论(0) 推荐(0)
摘要:#1配置minicom sudo minicom -s sudo minicom -w #1.配置网络,嵌入机的ip地址 ifconfig eth0 10.5.52.202 #2.挂载文件,把虚拟主机文件挂载到嵌入机器上,IP地址是虚拟机的 mount -t nfs -o nolock 10.5.5 阅读全文
posted @ 2015-08-10 10:34 ike_li 阅读(161) 评论(0) 推荐(0)
摘要:一、继承QThread 使用方法1.创建个继承QThread的类。#ifndef MYTHREAD_H#define MYTHREAD_H#include #include#includeclass MyThread : public QThread{ Q_OBJECTpublic: ex... 阅读全文
posted @ 2015-08-07 09:37 ike_li 阅读(6221) 评论(0) 推荐(0)