09 2017 档案

摘要:一,不多说直接上代码 QSortFilterProxyModel可实现过滤排序。但是如果直接使用只能对于父项进行过滤 这里需要继承 头文件 #include <QSortFilterProxyModel> 阅读全文
posted @ 2017-09-28 17:28 beautifulday 阅读(1758) 评论(0) 推荐(0) 编辑
摘要:前沿:我们在做qt项目的时候,通常会把某个html网页直接显示到应用程序中。比如绘图。直接把html形式的图标嵌入到应用程序中 但是我们需要把数据从后台c++端传到html端,实现显示。qt实现了相关的方法 程序运行截图 一。先看客户端js代码 <script type="text/javascri 阅读全文
posted @ 2017-09-13 17:31 beautifulday 阅读(5642) 评论(0) 推荐(0) 编辑
摘要:一、首先看看文件的组织架构 module1 module2生成dll某块。Shell来显示管理模块 二,看看关键bootstrapper类 using System;using System.Collections.Generic;using System.Linq;using System.Tex 阅读全文
posted @ 2017-09-05 15:05 beautifulday 阅读(677) 评论(0) 推荐(0) 编辑
摘要://插入排序算法 private static void sort(int []a) { int j; int temp; for(int i = 1;i <a.Length;i++) { j = i - 1; temp = a[i]; while (temp < a[j] && j >= 0) { 阅读全文
posted @ 2017-09-04 16:21 beautifulday 阅读(843) 评论(1) 推荐(0) 编辑

点击右上角即可分享
微信分享提示