1.新建webapplication,添加webForm拖拽两个TextBox,一个Button,Button单击事件中写File.AppendAllText("f:/a.txt",TextBox1.Text+":"+TextBox2.Text+"
");2.新建winform窗体,拖拽WebBro...
分类:
Web程序 时间:
2014-07-22 23:13:34
阅读次数:
343
1. Auto generation of
columns最简单的方法莫过于让DataGrid根据数据源中的字段自动生成列了:根据实体类的公共属性,
能够自动生成四种类型的数据列,对应关系如下:TextBox columns for string values;CheckBox columns fo...
分类:
其他好文 时间:
2014-05-12 19:49:17
阅读次数:
519
C#创建Excel文件,这里实际上是从资源中提取一个事先创建好的Excel文件,文件提取成功后,使用OleDb方法连接Excel,向Excel文件中写入数据。创建解决方案菜单》新建》项目》Windows窗体应用程序:添加相关组件:添加两个DataGridView,一个TextBox,两个按钮 ,如下图:添加Excel资源:先在文件夹中新建一个Excel文件,在Sheet1表的第一行设置列名:双击“...
分类:
其他好文 时间:
2014-05-11 04:00:38
阅读次数:
353
1.一般情况下我们会想到的是使用它的MaxLength就可以达到目的2.如果我们需要一个多行的文本框我们就会设置一下文本框的textmode="multiline",这时候我们会发现maxlength不再起作用了,在某个项目中我也遇到了这样的问题当时我是使用js做的处理function
textCo...
分类:
其他好文 时间:
2014-05-09 17:05:37
阅读次数:
286
这个是在昨天的基础上做的更改,测试已经满足大家的要求,如果谁有更好的办法也请交流一下
下面是代码:
'sunnyxing2004-04-01最后修改
Public Class MyTextBox
Inherits System.Windows.Forms.TextBox
Private m_strValidText As String = "0123456789.+...
分类:
其他好文 时间:
2014-05-09 01:56:38
阅读次数:
309
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// TextBox控...
分类:
其他好文 时间:
2014-05-08 19:15:06
阅读次数:
293
Telerik 支持更改以下控件样式 System.Windows.Button
System.Windows.ScrollViewer System.Windows.CheckBox System.Windows.TextBox
System.Windows.RadioButton Sy...
分类:
Web程序 时间:
2014-05-07 20:10:14
阅读次数:
428
WPF呈现文本的控件有 TextBlock,Label ,TextBox, RichTextBox 等等!
下面我们还是以呈现Hello World加以说明。
1.显示不同的样式的文本
代码:
Hello World
Hel...
分类:
其他好文 时间:
2014-05-07 16:27:14
阅读次数:
214
1、起因最近发现程序中有一段控制TextBox数字输入的代码,相信大家都不会太陌生,如下:void
int_KeyPress(object sender, KeyPressEventArgs e){ const char Delete = (char)8;
if (!Char.IsDig...
分类:
其他好文 时间:
2014-04-28 04:01:42
阅读次数:
393