码迷,mamicode.com
首页 >  
搜索关键字:type jint    ( 51998个结果
AE-模板替换->愉快今日--视频样片!
分类:其他好文   时间:2014-07-14 08:08:29    阅读次数:171
文本框和列表框的click事件
#region 文本框和列表框的click事件 private void tbORcbb_click(object sender, EventArgs e) { if (typeof(TextBox).IsInstanceOfType(sender)) { if (!ifSelected) { ((...
分类:其他好文   时间:2014-07-14 08:01:18    阅读次数:195
combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可
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
c# winform 按名称取得控件
//取得特定名称的控件Control control = Controls.Find("button1", true)[0];//取得该控件的属性object o = control.GetType().GetProperty("PropertyName").GetValue(control, nu...
分类:Windows程序   时间:2014-07-14 00:59:47    阅读次数:356
C#中图片单击旋转事件
#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
JAVA数组的定义及用法
数组是有序数据的集合,数组中的每一个元素具有同样的数组名和下标来唯一地确定数组中的元素。1. 一维数组1.1 一维数组的定义type arrayName[];type[] arrayName;当中类型(type)能够为Java中随意的数据类型,包含简单类型组合类型,数组名arrayName为一个合法...
分类:编程语言   时间:2014-07-13 23:17:06    阅读次数:283
HDMI介绍与流程
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
window批处理-3.go
go: 控制批处理中的命令执行流程 命令格式: go label lable--行号 demo bat @echo off echo 跳过中间,执行最后 goto last type a.txt :last dir . pause a.txt aaaaa 结果:...
分类:Windows程序   时间:2014-07-13 16:21:00    阅读次数:249
uva673
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
c语言字符串大小写字母转换
输入一个以#结束的字符串,本题要求将小写字母全部转换成大写字母,把大写字母全部转换成小写字母,其它字符不变。输入格式: 输入在一行中给出一个长度不超过40的、以#结束的非空字符串。输出格式: 在一行中按照要求输出转换后的字符串。输入样例:Hello World! 123#输出样例:hELLO wOR...
分类:编程语言   时间:2014-07-13 13:15:53    阅读次数:230
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!