DataGridView 密码列(显示为*号)的设置
需要在DataGridView的2个事件中写代码!下面的代码把第4列设置为密码列(显示为*号):
1 /// <summary>
2 /// 单元格显示格式事件
3 /// </summary>
4 /// <param name="sender"></param>
5 /// <param name="e"></param>
6 private void dataGridView1_CellFormatting( object sender, DataGridViewCellFormattingEventArgs e)
7 {
8 // 把第4列显示*号,*号的个数和实际数据的长度相同
9 if (e.ColumnIndex == 3 )
10 {
11 if (e.Value != null && e.Value.ToString().Length > 0 )
12 {
13 e.Value = new string ( ' * ' ,e.Value.ToString().Length);
14 }
15 }
16 }
17
18 /// <summary>
19 /// 编辑单元格控件事件
20 /// </summary>
21 /// <param name="sender"></param>
22 /// <param name="e"></param>
23 private void dataGridView1_EditingControlShowing( object sender, DataGridViewEditingControlShowingEventArgs e)
24 {
25 // 编辑第4列时,把第4列显示为*号
26 TextBox t = e.Control as TextBox;
27 if (t != null )
28 {
29 if ( this .dataGridView1.CurrentCell.ColumnIndex == 3 )
30 t.PasswordChar = ' * ' ;
31 else
32 t.PasswordChar = new char ();
33 }
34 }
设置 DataSource 属性后无法修改项集合
comboBox.DataSource = ds.Tables[0];
comboBox.DisplayMember = "Com_CompanyName";
comboBox.ValueMember = "Com_CompanyNo";
comboBox.Items.Insert(0, "--请选着—");
-------------------------------------------------------------------------------==
DataTable dt = ds.Tables[0];
DataRow dr = dt.NewRow();
dr["Com_CompanyName"] = "--选择所有--";
dt.Rows.InsertAt(dr, 0);
comboBox.DataSource = ds.Tables[0];
comboBox.DisplayMember = "Com_CompanyName";
comboBox.ValueMember = "Com_CompanyNo";
最近做了一个DataGridView的分页显示Demo。也是看见网络上很多人询问关于DataGridView如何做分页。根据我的认识,Visual Sutido 2005里的DataGridView控件是没有带分页属性的,因此咱们必须通过写代码去实现分页功能。
好了,先看一下Demo的界面。
从界面可以看到,在设计时需要一个DataGridView、BindingNavigate、BindingSource控件,分别命名为dgvInfo、bdnInfo、bdsInfo。
在bdnInfo控件中添加几个用于选择页面的lable和botton,如上图所示。
设计时:
1、定义几个所需的公有成员:
2、在窗体载入事件中,从数据源读取记录到DataTable中:
string strConn = "SERVER=127.0.0.1;DATABASE=NORTHWIND;UID=SA;PWD=ULTRATEL"; //数据库连接字符串
SqlConnection conn = new SqlConnection(strConn);
conn.Open();
string strSql = "SELECT * FROM CUSTOMERS";
SqlDataAdapter sda = new SqlDataAdapter(strSql,conn);
sda.Fill(ds,"ds");
conn.Close();
dtInfo = ds.Tables[0];
InitDataSet();
3、用当前页面数据填充DataGridView
4、菜单响应事件:
在DataGridView的列中表示图片(Image、图标),可以使用DataGridViewImageColumn实现。 //DataGridViewImageColumn作成 根据DataGridViewImageColumn的ValuesAreIcons设定,指定是表示Image对象,还是表示Icon对象。Icon表示时,属性设定为True即可。 在没有值的单元格中表示图片时,可以使用Image属性实现。表示Icon时(ValuesAreIcons为True),可以使用Icon属性实现。当属性没有设定时,在没有设定值的单元格中会有四个角者是红钯X的图片被表示。 补充:使用DefaultCellStyle.NullValue属性设定的图片,没有使用Image、Icon属性设定的图片的优先级高。 在没有设定值的单元格中不表示四角为X的图片设定 上面已经说了,在没有设定值的单元格中,会表示四角有X的图片,但设定DefaultCellStyle的NullValue属性设定为null(VB.NET是Nothing)就不会被表示。 // Image列取得 根据单元格的值表示图片 根据其它列单元格的值,决定在DataGridViewImageColumn的单元格中表示图片时,可以使用CellFormatting事件实现。CellFormatting事件的使用方法在这里有详细的说明,在这里用简单的例子进行说明。 下面是在DataGridView中有名字为"Image"的DataGridViewImageColumn列和名字为"Column1"的整数型列时,根据"Column1"列单元格的值变更表示的图片的例子。 private Bitmap image1 = new Bitmap("C:\\1.gif"); |
最近做了一个DataGridView的分页显示Demo。也是看见网络上很多人询问关于DataGridView如何做分页。根据我的认识,Visual Sutido 2005里的DataGridView控件是没有带分页属性的,因此咱们必须通过写代码去实现分页功能。
好了,先看一下Demo的界面。
从界面可以看到,在设计时需要一个DataGridView、BindingNavigate、BindingSource控件,分别命名为dgvInfo、bdnInfo、bdsInfo。
在bdnInfo控件中添加几个用于选择页面的lable和botton,如上图所示。
设计时:
1、定义几个所需的公有成员:
2、在窗体载入事件中,从数据源读取记录到DataTable中:
string strConn = "SERVER=127.0.0.1;DATABASE=NORTHWIND;UID=SA;PWD=ULTRATEL"; //数据库连接字符串
SqlConnection conn = new SqlConnection(strConn);
conn.Open();
string strSql = "SELECT * FROM CUSTOMERS";
SqlDataAdapter sda = new SqlDataAdapter(strSql,conn);
sda.Fill(ds,"ds");
conn.Close();
dtInfo = ds.Tables[0];
InitDataSet();
3、用当前页面数据填充DataGridView
4、菜单响应事件:
在DataGridView的列中表示图片(Image、图标),可以使用DataGridViewImageColumn实现。 //DataGridViewImageColumn作成 根据DataGridViewImageColumn的ValuesAreIcons设定,指定是表示Image对象,还是表示Icon对象。Icon表示时,属性设定为True即可。 在没有值的单元格中表示图片时,可以使用Image属性实现。表示Icon时(ValuesAreIcons为True),可以使用Icon属性实现。当属性没有设定时,在没有设定值的单元格中会有四个角者是红钯X的图片被表示。 补充:使用DefaultCellStyle.NullValue属性设定的图片,没有使用Image、Icon属性设定的图片的优先级高。 在没有设定值的单元格中不表示四角为X的图片设定 上面已经说了,在没有设定值的单元格中,会表示四角有X的图片,但设定DefaultCellStyle的NullValue属性设定为null(VB.NET是Nothing)就不会被表示。 // Image列取得 根据单元格的值表示图片 根据其它列单元格的值,决定在DataGridViewImageColumn的单元格中表示图片时,可以使用CellFormatting事件实现。CellFormatting事件的使用方法在这里有详细的说明,在这里用简单的例子进行说明。 下面是在DataGridView中有名字为"Image"的DataGridViewImageColumn列和名字为"Column1"的整数型列时,根据"Column1"列单元格的值变更表示的图片的例子。 private Bitmap image1 = new Bitmap("C:\\1.gif"); |