#region 文本框和列表框的click事件 private void tbORcbb_click(object sender, EventArgs e) { if (typeof(TextBox).IsInstanceOfType(sender)) { if (!ifSelected) { ((...
分类:
其他好文 时间:
2014-07-14 08:01:18
阅读次数:
195
private void tbORcbb_leave(object sender, EventArgs e) { if (typeof(TextBox).IsInstanceOfType(sender)) { if (((TextBox)sender).Text.IsNumeric() != tru...
分类:
其他好文 时间:
2014-07-14 08:00:32
阅读次数:
187
//取得特定名称的控件Control control = Controls.Find("button1", true)[0];//取得该控件的属性object o = control.GetType().GetProperty("PropertyName").GetValue(control, nu...
#region 图片单击旋转事件 private void pb_Heads_Click(object sender, EventArgs e) { System.Drawing.Image myImage = pb_Heads.Image; myImage.RotateFlip(RotateFli...
分类:
其他好文 时间:
2014-07-14 00:55:25
阅读次数:
204
数组是有序数据的集合,数组中的每一个元素具有同样的数组名和下标来唯一地确定数组中的元素。1. 一维数组1.1 一维数组的定义type arrayName[];type[] arrayName;当中类型(type)能够为Java中随意的数据类型,包含简单类型组合类型,数组名arrayName为一个合法...
分类:
编程语言 时间:
2014-07-13 23:17:06
阅读次数:
283
HDMI,全称为(High Definition Multimedia Interface)高清多媒体接口,主要用于传输高清音视频信号。HDMI引脚:HDMI有A,B,C,D,E五种引脚类型,目前市面中比较常见的就是Type A:其中 1-9都是TMDS数据传输实际上用到的引脚,分为0,1,2三组....
分类:
其他好文 时间:
2014-07-13 21:57:21
阅读次数:
341
go:
控制批处理中的命令执行流程
命令格式:
go label
lable--行号
demo
bat
@echo off
echo 跳过中间,执行最后
goto last
type a.txt
:last
dir .
pause
a.txt
aaaaa
结果:...
Parentheses Balance
You are given a string consisting of parentheses () and []. A string of this type is said to be correct:
(a)if it is the empty string(b)if A and B are correct, AB is c...
分类:
其他好文 时间:
2014-07-13 15:42:59
阅读次数:
207
输入一个以#结束的字符串,本题要求将小写字母全部转换成大写字母,把大写字母全部转换成小写字母,其它字符不变。输入格式: 输入在一行中给出一个长度不超过40的、以#结束的非空字符串。输出格式: 在一行中按照要求输出转换后的字符串。输入样例:Hello World! 123#输出样例:hELLO wOR...
分类:
编程语言 时间:
2014-07-13 13:15:53
阅读次数:
230