这次来讲讲Unity3D NGUI这个插件的学习,这个插件是收费的,不过去网上可以下载得很多可用版本。用来做用户的交互UI,学习起来比较简单 第一步,导入NGUI包 http://pan.baidu.com/s/1mhKaoha 导入后Unity工具栏上面就会出现关于NGUI的选择了 第二步,开始看 ...
分类:
编程语言 时间:
2016-05-15 16:40:11
阅读次数:
355
调用方法: 在InitializeComponent()函数中 // this.dataGridView1 = new System.Windows.Forms.DataGridView(); 屏蔽掉,添加下面这句即可 this.dataGridView1 = new DoubleBufferLis ...
Python简介: 是一种面向对象、解释型计算机程序设计语言,由Guido van Rossum于1989年发明。Python就为我们提供了非常完善的基础代码库,覆盖了网络、文件、GUI、数据库、文本等大量内容。 Python适合开发的内容: 网络应用,包括网站、后台服务;许多日常需要的小工具,包括 ...
分类:
编程语言 时间:
2016-05-15 16:41:29
阅读次数:
165
先贴上一个很清晰的分步学帖子 第一步:最简单的函数,准备附加额外功能 1 2 3 4 5 6 7 8 # -*- coding:gbk -*- '''示例1: 最简单的函数,表示调用了两次''' def myfunc(): print("myfunc() called.") myfunc() myf ...
分类:
编程语言 时间:
2016-05-15 16:41:28
阅读次数:
227
1.准备工作 systemctl disable firewalld systemctl stop firewalld setenforce 0 hostnamectl set-hostname libvirt-Manage rpm -qa|grep kvm yum groupinstall Vir ...
分类:
系统相关 时间:
2016-05-15 16:40:25
阅读次数:
189
关于js的执行原理,除去html页面中直接添加的代码,js代码的放置可以分为两类。 //情形a <script type="text/javascript" src="xxx.js"$amp;>amp;$lt;/script> //情形b <script type="text/javascript" ...
分类:
Web程序 时间:
2016-05-15 16:38:26
阅读次数:
167
the GENERATED_BODY() macro allows the class to build without having a constructor defined. If you need a constructor, you can change that macro to the ...
分类:
其他好文 时间:
2016-05-15 16:40:36
阅读次数:
1019
提交地址:http://poj.org/problem?id=1163&lang=default&change=true 中文翻译:http://codevs.cn/problem/1220/ The Triangle Time Limit: 1000MS Memory Limit: 10000K ...
分类:
其他好文 时间:
2016-05-15 16:40:46
阅读次数:
151
今天整理资料,发现了以前学习C语言时,常用到的几个网站: 1、http://ganquan.info/standard-c/ 改网站包含了C语言标准版的15个头文件解释以及函数,137个函数和演示,可以点击函数名字进去查看。很好用,遇到不懂的函数可以查看解释和演示; 2、 http://c.bian ...
分类:
编程语言 时间:
2016-05-15 16:40:15
阅读次数:
217
Given two binary strings, return their sum (also a binary string). For example,a = "11"b = "1"Return "100". 注意:进位。 Similar Problem : LeetCode 2. Add T ...
分类:
其他好文 时间:
2016-05-15 16:37:43
阅读次数:
140
using System; using System.Data; using System.IO; using System.Xml; namespace DotNet.Utilities { public class XMLProcess { #region 构造函数 public XMLProc ...
分类:
其他好文 时间:
2016-05-15 16:38:07
阅读次数:
227
原文链接:HTTP POST GET SOAP本质区别详解 一 原理区别 一般在浏览器中输入网址访问资源都是通过GET方式;在FORM提交中,可以通过Method指定提交方式为GET或者POST,默认为GET提交 Http定义了与服务器交互的不同方法,最基本的方法有4种,分别是GET,POST,PU ...
分类:
Web程序 时间:
2016-05-15 16:39:53
阅读次数:
133
软件: jTessBoxEditor Version 0.9 (30 April 2013) Tesseract-OCR win32 v3.02 with Leptonica 训练步骤: 1.使用jTessBoxEditor,tools->merge_tif,产生tif文件 2.产生box文件 te ...
分类:
其他好文 时间:
2016-05-15 16:37:14
阅读次数:
396
Problem I: Catching Dogs Description Diao Yang keeps many dogs. But today his dogs all run away. Diao Yang has to catch them. To simplify the problem, ...
分类:
其他好文 时间:
2016-05-15 16:39:11
阅读次数:
240
前言:经常会看到有一些app的banner界面可以实现循环播放多个广告图片和手动滑动循环。本以为单纯的ViewPager就可以实现这些功能。但是蛋疼的事情来了,ViewPager并不支持循环翻页。所以要实现循环还得需要自己去动手。自己在网上也找了些例子,本博文的Demo是结合自己找到的一些相关例子的 ...
分类:
移动开发 时间:
2016-05-15 16:38:53
阅读次数:
254