09 2017 档案
摘要:一,不多说直接上代码 QSortFilterProxyModel可实现过滤排序。但是如果直接使用只能对于父项进行过滤 这里需要继承 头文件 #include <QSortFilterProxyModel>
阅读全文
摘要:前沿:我们在做qt项目的时候,通常会把某个html网页直接显示到应用程序中。比如绘图。直接把html形式的图标嵌入到应用程序中 但是我们需要把数据从后台c++端传到html端,实现显示。qt实现了相关的方法 程序运行截图 一。先看客户端js代码 <script type="text/javascri
阅读全文
摘要:一、首先看看文件的组织架构 module1 module2生成dll某块。Shell来显示管理模块 二,看看关键bootstrapper类 using System;using System.Collections.Generic;using System.Linq;using System.Tex
阅读全文
摘要://插入排序算法 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) {
阅读全文