this.textBox1.Select(this.txtMsgInfo.TextLength,
0); this.textBox1.ScrollToCaret();
分类:
其他好文 时间:
2014-05-26 14:54:46
阅读次数:
178
当textbox为多行时,获取它的行数:int count =
this.txtMsgInfo.Lines.GetUpperBound(0);
分类:
其他好文 时间:
2014-05-26 14:50:35
阅读次数:
292
在NGUI里,UILabel控件可以支持一些简单功能的标签,使文本显示更丰富及实现类似超链接的功能。但是在使用的时候发现了NGUI3.5.9版本里存在着一个bug。不过还好修复这个bug也很简单。在UILabel中支持[url=link]text[/url]的方式来定义类超链接的文本。bug就出现在...
分类:
其他好文 时间:
2014-05-26 14:40:19
阅读次数:
245
要点:1. 2Custmer.cs 1 using
Iesi.Collections.Generic; 2 using System; 3 using System.Linq; 4 using
System.Text; 5 6 namespace Model 7 { 8 p...
分类:
系统相关 时间:
2014-05-26 11:53:27
阅读次数:
302
GridView中Dataformatstring
格式化日期应注意的问题1、HtmlEncode="False"2、DataFormatString="{0:d}"C#格式化日期时间DateTime dt =
DateTime.Now;Label1.Text = dt.ToString();//2...
分类:
其他好文 时间:
2014-05-26 11:47:35
阅读次数:
212
HTML(Hyper Text Markup
language),超文本标记语言样式CSS,一般存储在样式表中CSS样式,一般分为三种:内嵌样式、外部样式、行内样式三种。其中p
#green{color:green}表示只有p标签id为green的才有效HTTP(Hyper Text Transfe...
分类:
其他好文 时间:
2014-05-26 11:17:31
阅读次数:
243
Preferences.sublime-settings:{ "color_scheme":
"Packages/Color Scheme - Default/Sunburst.tmTheme", "font_size":
16, "font_face": "Monaco", "highlight_...
分类:
编程语言 时间:
2014-05-26 10:25:11
阅读次数:
223
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Data.SqlClient; 6 using
System.Dat...
分类:
数据库 时间:
2014-05-26 10:21:48
阅读次数:
247
网上找了一堆资料学习一下,了解这些,有助于规化程序结构,优化代码;使用gcc编译出来的程序,用size可以查看程序结构和大小,如
1: #size hello 2: Text data bss dec hex filename 3: 778 200 4 982 3D6 hello...
分类:
其他好文 时间:
2014-05-26 10:07:17
阅读次数:
289
1 using System; 2 using System.Collections.Generic;
3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 using
System.Runtime.Remoti....
分类:
编程语言 时间:
2014-05-26 09:07:50
阅读次数:
270