DataGridView

DataGridView
DataGridView

[转载]c# WinForm开发 DataGridView各种操作总结大全

(2011-08-27 21:20:03)

转载▼

标签:

转载

原文地址:c# WinForm开发 DataGridView各种操作总结大全作者:lilin0415

一、单元格内容的操作

//取得当前单元格内容

Console.WriteLine(DataGridView1.CurrentCell.Value);

// 取得当前单元格的列Index

Console.WriteLine(DataGridView1.CurrentCell.ColumnIndex);

// 取得当前单元格的行Index

Console.WriteLine(DataGridView1.CurrentCell.RowIndex);

复制代码

另外,使用DataGridView.CurrentCellAddress 属性(而不是直接访问单元格)来确定单元格所在的行:

DataGridView.CurrentCellAddress.Y 和列:DataGridView.CurrentCellAddress.X 。这对于避免取消共享行的共享非常有用。

当前的单元格可以通过CurrentCell 来设定DataGridView 的激活单元格。将CurrentCell 设为Nothing(null) 可以取消激活的单元格。

// 设定(0, 0) 为当前单元格

DataGridView1.CurrentCell = DataGridView1[0, 0];

复制代码

在整行选中模式开启时,你也可以通过CurrentCell 来设定选定行。

///

/// 向下遍历

///

///

///

private void button4_Click(object sender, EventArgs e)

{

int row = this.dataGridView1.CurrentRow.Index + 1;

if (row > this.dataGridView1.RowCount - 1)

row = 0;

this.dataGridView1.CurrentCell = this.dataGridView1[0, row];

}

///

/// 向上遍历

///

///

///

private void button5_Click(object sender, EventArgs e)

{

int row = this.dataGridView1.CurrentRow.Index - 1;

if (row < 0)

row = this.dataGridView1.RowCount - 1;

this.dataGridView1.CurrentCell = this.dataGridView1[0, row];

}

复制代码

* 注意: this.dataGridView 的索引器的参数是: columnIndex, rowIndex 或是columnName, rowIndex

这与习惯不同。

DataGridView 设定单元格只读:

1)使用ReadOnly 属性

如果希望,DataGridView 内所有单元格都不可编辑,那么只要:

// 设置DataGridView1 为只读,此时,用户的新增行操作和删除行操作也被屏蔽了。DataGridView1.ReadOnly = true;

复制代码

如果希望,DataGridView 内某个单元格不可编辑,那么只要:

// 设置DataGridView1 的第2列整列单元格为只读

DataGridView1.Columns[1].ReadOnly = true;

// 设置DataGridView1 的第3行整行单元格为只读

DataGridView1.Rows[2].ReadOnly = true;

// 设置DataGridView1 的[0,0]单元格为只读

DataGridView1[0, 0].ReadOnly = true;

复制代码

DataGridView 行头列头的单元格

// 改变DataGridView1的第一列列头内容

DataGridView1.Columns[0].HeaderCell.Value = "第一列";

// 改变DataGridView1的第一行行头内容

DataGridView1.Rows[0].HeaderCell.Value = "第一行";

// 改变DataGridView1的左上头部单元内容

DataGridView1.TopLeftHeaderCell.Value = "左上";

复制代码

另外你也可以通过HeaderText 来改变他们的内容。

// 改变DataGridView1的第一列列头内容

DataGridView1.Columns[0].HeaderText = "第一列";

复制代码

DataGridView 单元格的ToolTip的设置

DataGridView.ShowCellToolTips = True 的情况下,单元格的ToolTip 可以表示出来。对于单元格窄小,无法完全显示的单元格,ToolTip 可以显示必要的信息。

1)设定单元格的ToolTip内容

// 设定单元格的ToolTip内容

DataGridView1[0, 0].ToolTipText = "该单元格的内容不能修改";

// 设定列头的单元格的ToolTip内容

DataGridView1.Columns[0].ToolTipText = "该列只能输入数字";

// 设定行头的单元格的ToolTip内容

DataGridView1.Rows[0].HeaderCell.ToolTipText = "该行单元格内容不能修改";

复制代码

2)CellToolTipTextNeeded 事件

在批量的单元格的ToolTip 设定的时候,一个一个指定那么设定的效率比较低,这时候可以利用CellToolTipTextNeeded 事件。当单元格的ToolTipText 变化的时候也会引发该事件。但是,当DataGridView的DataSource被指定且VirualMode=True的时候,该事件不会被引发。// CellToolTipTextNeeded事件处理方法

private void DataGridView1_CellToolTipTextNeeded(object sender, DataGridViewCellToolTipTextNeededEventArgs e)

{

e.ToolTipText = e.ColumnIndex.ToString() + ", " + e.RowIndex.ToString();

}

复制代码

DataGridView 的单元格的边框、网格线样式的设定

1) DataGridView 的边框线样式的设定

DataGridView 的边框线的样式是通过DataGridView.BorderStyle 属性来设定的。BorderStyle 属性设定值是一个BorderStyle 枚举:FixedSingle(单线,默认)、Fixed3D、None。

2) 单元格的边框线样式的设定

单元格的边框线的样式是通过DataGridView.CellBorderStyle 属性来设定的。CellBorderStyle 属性设定值是DataGridViewCellBorderStyle 枚举。(详细参见MSDN)

另外,通过DataGridView.ColumnHeadersBorderStyle 和RowHeadersBorderStyle 属性可以修改DataGridView 的头部的单元格边框线样式。

属性设定值是DataGridViewHeaderBorderStyle 枚举。(详细参见MSDN)

3)单元格的边框颜色的设定

单元格的边框线的颜色可以通过DataGridView.GridColor 属性来设定的。默认是ControlDarkDark 。但是只有在CellBorderStyle 被设定为Single、SingleHorizontal、SingleVertical 的条件下才能改变其边框线的颜色。同样,ColumnHeadersBorderStyle 以及RowHeadersBorderStyle 只有在被设定为Single 时,才能改变颜色。

4)单元格的上下左右的边框线式样的单独设定

CellBorderStyle只能设定单元格全部边框线的式样。要单独改变单元格某一边边框式样的话,需要用到DataGridView.AdvancedCellBorderStyle属性。如示例:

//单元格的上边和左边线设为二重线

//单元格的下边和右边线设为单重线

DataGridView1.AdvancedCellBorderStyle.Top = DataGridViewAdvancedCellBorderStyle.InsetDouble

DataGridView1.AdvancedCellBorderStyle.Right = DataGridViewAdvancedCellBorderStyle.Inset DataGridView1.AdvancedCellBorderStyle.Bottom = DataGridViewAdvancedCellBorderStyle.Inset DataGridView1.AdvancedCellBorderStyle.Left = DataGridViewAdvancedCellBorderStyle.InsetDouble

复制代码

同样,设定行头单元格的属性是:AdvancedRowHeadersBorderStyle,设定列头单元格属性是:AdvancedColumnHeadersBorderStyle。

DataGridView 单元格表示值的自定义

通过CellFormatting事件,可以自定义单元格的表示值。(比如:值为Error的时候,单元格被设定为红色)

下面的示例:将“Colmn1”列的值改为大写。

//CellFormatting 事件处理方法

private void DataGridView1_CellFormatting(object sender,

DataGridViewCellFormattingEventArgs e)

{

DataGridView dgv = (DataGridView)sender;

// 如果单元格是“Column1”列的单元格

if (dgv.Columns[e.ColumnIndex].Name == "Column1" && e.Value is string)

{

// 将单元格值改为大写

string str = e.Value.ToString();

e.Value = str.ToUpper();

// 应用该Format,Format完毕。

e.FormattingApplied = true;

}

}

复制代码

CellFormatting事件的DataGridViewCellFormattingEventArgs对象的Value属性一开始保存着未被格式化的值。当Value属性被设定表示用的文本之后,把FormattingApplied属性做为True,告知DataGridView文本已经格式化完毕。如果不这样做的话,DataGridView会根据已经设定的Format,NullValue,DataSourceNullValue,FormatProvider属性会将Value属性会被重新格式化一遍。

DataGridView 用户输入时,单元格输入值的设定

通过DataGridView.CellParsing 事件可以设定用户输入的值。

下面的示例:当输入英文文本内容的时候,立即被改变为大写。

//CellParsing 事件处理方法

private void DataGridView1_CellParsing(object sender,

DataGridViewCellParsingEventArgs e)

{

DataGridView dgv = (DataGridView)sender;

//单元格列为“Column1”时

if (dgv.Columns[e.ColumnIndex].Name == "Column1" &&

e.DesiredType == typeof(string))

{

//将单元格值设为大写

e.Value = e.Value.ToString().ToUpper();

//解析完毕

e.ParsingApplied = true;

}

}

复制代码

二、行/列的操作

DataGridView 不显示最下面的新行:

通常DataGridView 的最下面一行是用户新追加的行(行头显示* )。如果不想让用户新追加行即不想显示该新行,可以将DataGridView 对象的AllowUserToAddRows 属性设置为False。

// 设置用户不能手动给DataGridView1 添加新行

DataGridView1.AllowUserToAddRows = false;

但是,可以通过程序:DataGridViewRowCollection.Add 为DataGridView 追加新行。

补足:如果DataGridView 的DataSource 绑定的是DataView, 还可以通过设置DataView.AllowAdd

属性为False 来达到同样的效果。

DataGridView 判断新增行:

DataGridView的AllowUserToAddRows属性为True时也就是允许用户追加新行的场合下,DataGridView的最后一行就是新追加的行(*行)。使用DataGridViewRow.IsNewRow 属性可以判断哪一行是新追加的行。另外,通过DataGridView.NewRowIndex 可以获取新行的行序列号。在没有新行的时候,NewRowIndex = -1。

If (DataGridView1.CurrentRow.IsNewRow)

Console.WriteLine("当前行为新追加行。") ;

Else

Console.WriteLine("当前行不是新追加行。") ;

复制代码

DataGridView 行的用户删除操作的自定义:

1)无条件的限制行删除操作。

默认时,DataGridView 是允许用户进行行的删除操作的。如果设置DataGridView对象的AllowUserToDeleteRows属性为False 时,用户的行删除操作就被禁止了。

// 禁止DataGridView1的行删除操作。

DataGridView1.AllowUserToDeleteRows = false;

但是,通过DataGridViewRowCollection.Remove 还是可以进行行的删除。

补足:如果DataGridView 绑定的是DataView 的话,通过DataView.AllowDelete 也可以控制行的删除。

行删除时的条件判断处理。

用户在删除行的时候,将会引发https://www.360docs.net/doc/8e17642512.html,erDeletingRow 事件。在这个事件里,可以判断条件并取消删除操作。

// DataGridView1 的UserDeletingRow 事件

private void DataGridView1_UserDeletingRow(

object sender, DataGridViewRowCancelEventArgs e)

{

// 删除前的用户确认。

if (MessageBox.Show("确认要删除该行数据吗?", "删除确认",

MessageBoxButtons.OKCancel,

MessageBoxIcon.Question) != DialogResult.OK)

{

// 如果不是OK,则取消。

e.Cancel = true;

}

}

复制代码

DataGridView 行、列的隐藏和删除:

1)行、列的隐藏

// DataGridView1的第一列隐藏

DataGridView1.Columns[0].Visible = false;

// DataGridView1的第一行隐藏

DataGridView1.Rows[0].Visible = false;

复制代码

2)行头、列头的隐藏

// 列头隐藏

DataGridView1.ColumnHeadersVisible = false;

// 行头隐藏

DataGridView1.RowHeadersVisible = false;

复制代码

3)行和列的删除

' 删除名为"Column1"的列

DataGridView1.Columns.Remove("Column1");

' 删除第一列

DataGridView1.Columns.RemoveAt(0);

' 删除第一行

DataGridView1.Rows.RemoveAt(0);

复制代码

4)删除选中行

foreach (DataGridViewRow r in DataGridView1.SelectedRows) {

if (!r.IsNewRow)

{

DataGridView1.Rows.Remove(r);

}

}

复制代码

DataGridView 禁止列或者行的Resize:

1)禁止所有的列或者行的Resize

// 禁止用户改变DataGridView1的所有列的列宽DataGridView1.AllowUserToResizeColumns = false;

//禁止用户改变DataGridView1の所有行的行高DataGridView1.AllowUserToResizeRows = false;

复制代码

但是可以通过DataGridViewColumn.Width 或者DataGridViewRow.Height 属性设定列宽和行高。

2)禁止指定行或者列的Resize

// 禁止用户改变DataGridView1的第一列的列宽

DataGridView1.Columns[0].Resizable = DataGridViewTriState.False;

// 禁止用户改变DataGridView1的第一列的行宽

DataGridView1.Rows[0].Resizable = DataGridViewTriState.False;

复制代码

关于NoSet

当Resizable 属性设为DataGridViewTriState.NotSet 时,实际上会默认以DataGridView 的AllowUserToResizeColumns 和AllowUserToResizeRows 的属性值进行设定。比如:DataGridView.AllowUserToResizeColumns = False 且Resizable 是NoSet 设定时,Resizable = False 。

判断Resizable 是否是继承设定了DataGridView 的AllowUserToResizeColumns 和AllowUserToResizeRows 的属性值,可以根据State 属性判断。如果State 属性含有ResizableSet,那么说明没有继承设定。

3)列宽和行高的最小值的设定

// 第一列的最小列宽设定为100

DataGridView1.Columns[0].MinimumWidth = 100;

// 第一行的最小行高设定为50

DataGridView1.Rows[0].MinimumHeight = 50;

复制代码

4) 禁止用户改变行头的宽度以及列头的高度

// 禁止用户改变列头的高度

DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;

// 禁止用户改变行头的宽度

DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.EnableResizing;

复制代码

DataGridView 列宽和行高自动调整的设定:

// 设定包括Header和所有单元格的列宽自动调整

DataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;

// 设定包括Header和所有单元格的行高自动调整

DataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;

复制代码

AutoSizeColumnsMode 属性的设定值枚举请参照msdn 的DataGridViewAutoSizeRowsMode 说明。

2)指定列或行自动调整

// 第一列自动调整

DataGridView1.Columns[0].AutoSizeMode =DataGridViewAutoSizeColumnMode.DisplayedCells;

AutoSizeMode 设定为NotSet 时,默认继承的是DataGridView.AutoSizeColumnsMode 属性。

3) 设定列头的高度和行头的宽度自动调整

// 设定列头的宽度可以自由调整

DataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;

// 设定行头的宽度可以自由调整

DataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;

复制代码

4)随时自动调整

a,临时的,让列宽自动调整,这和指定AutoSizeColumnsMode属性一样。

// 让DataGridView1 的所有列宽自动调整一下。

DataGridView1.AutoResizeColumns(DataGridViewAutoSizeColumnsMode.AllCells);

// 让DataGridView1 的第一列的列宽自动调整一下。

DataGridView1.AutoResizeColumn(0, DataGridViewAutoSizeColumnMode.AllCells);

复制代码

上面调用的AutoResizeColumns 和AutoResizeColumn 当指定的是DataGridViewAutoSizeColumnMode.AllCells 的时候,参数可以省略。即:DataGridView1.AutoResizeColumn(0) 和DataGridView1.AutoResizeColumns()

b,临时的,让行高自动调整

// 让DataGridView1 的所有行高自动调整一下。

DataGridView1.AutoResizeRows(DataGridViewAutoSizeRowsMode.AllCells);

//让DataGridView1 的第一行的行高自动调整一下。

DataGridView1.AutoResizeRow(0, DataGridViewAutoSizeRowMode.AllCells);

复制代码

上面调用的AutoResizeRows 和AutoResizeRow 当指定的是DataGridViewAutoSizeRowMode.AllCells 的时候,参数可以省略。即:DataGridView1.AutoResizeRow (0) 和DataGridView1.AutoResizeRows()

c,临时的,让行头和列头自动调整

// 列头高度自动调整

DataGridView1.AutoResizeColumnHeadersHeight();

// 行头宽度自动调整

DataGridView1.AutoResizeRowHeadersWidth( DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders);

复制代码

关于性能:

通过AutoSizeColumnsMode 或者AutoSizeRowsMode 属性所指定的单元格进行自动调整时,如果调整次数过于多那么将可能导致性能下降,尤其是在行和列数比较多的情况下。在这时用DisplayedCells 代替AllCells 能减少非所见的单元格的调整,从而提高性能。

DataGridView 冻结列或行

DataGridViewColumn.Frozen 属性为True 时,该列左侧的所有列被固定,横向滚动时固定列不随滚动条滚动而左右移动。这对于重要列固定显示很有用。

// DataGridView1的左侧2列固定

DataGridView1.Columns[1].Frozen = true;

复制代码

但是,DataGridView.AllowUserToOrderColumns = True 时,固定列不能移动到非固定列,反之亦然。

2)行冻结

DataGridViewRow.Frozen 属性为True 时,该行上面的所有行被固定,纵向滚动时固定行不随滚动条滚动而上下移动。

// DataGridView1 的上3行固定

DataGridView1.Rows[2].Frozen = true;

复制代码

DataGridView 列顺序的调整

设定DataGridView 的AllowUserToOrderColumns 为True 的时候,用户可以自由调整列的顺序。

当用户改变列的顺序的时候,其本身的Index 不会改变,但是DisplayIndex 改变了。你也可以通过程序改变DisplayIndex 来改变列的顺序。列顺序发生改变时会引发ColumnDisplayIndexChanged 事件:

// DataGridView1的ColumnDisplayIndexChanged事件处理方法

private void DataGridView1_ColumnDisplayIndexChanged(object sender,

DataGridViewColumnEventArgs e)

{

Console.WriteLine("{0} 的位置改变到{1} ",

https://www.360docs.net/doc/8e17642512.html,, e.Column.DisplayIndex);

}

复制代码

DataGridView 新加行的默认值的设定

需要指定新加行的默认值的时候,可以在DataGridView.DefaultValuesNeeded事件里处理。在该事件中处理除了可以设定默认值以外,还可以指定某些特定的单元格的ReadOnly属性等。

// DefaultValuesNeeded 事件处理方法

private void DataGridView1_DefaultValuesNeeded(object sender, DataGridViewRowEventArgs e)

{

// 设定单元格的默认值

e.Row.Cells["Column1"].Value = 0;

e.Row.Cells["Column2"].Value = "-";

}

复制代码

三、针对datagridview全局属性的设置

使用EditMode 属性

DataGridView.EditMode 属性被设置为DataGridViewEditMode.EditProgrammatically 时,用户就不能手动编辑单元格的内容了。但是可以通过程序,调用DataGridView.BeginEdit 方法,使单元格进入编辑模式进行编辑。

DataGridView1.EditMode = DataGridViewEditMode.EditProgrammatically;

根据条件设定单元格的不可编辑状态

当一个一个的通过单元格坐标设定单元格ReadOnly 属性的方法太麻烦的时候,你可以通过CellBeginEdit 事件来取消单元格的编辑。

// CellBeginEdit 事件处理方法

private void DataGridView1_CellBeginEdit(object sender,

DataGridViewCellCancelEventArgs e)

{

DataGridView dgv = (DataGridView)sender;

//是否可以进行编辑的条件检查

if (dgv.Columns[e.ColumnIndex].Name == "Column1" &&

!(bool)dgv["Column2", e.RowIndex].Value)

{

// 取消编辑

e.Cancel = true;

}

}

复制代码

DataGridView 剪切板的操作

DataGridView.ClipboardCopyMode 属性被设定为DataGridViewClipboardCopyMode.Disable 以外的情况时,「Ctrl + C」按下的时候,被选择的单元格的内容会拷贝到系统剪切板内。格式有:Text,UnicodeText,Html,CommaSeparatedValue。可以直接粘贴到Excel 内。ClipboardCopyMode 还可以设定Header部分是否拷贝:EnableAlwaysIncludeHeaderText 拷贝Header部分、EnableWithoutHeaderText 则不拷贝。默认是EnableWithAutoHeaderText ,Header 如果选择了的话,就拷贝。

1)编程方式实现剪切板的拷贝

Clipboard.SetDataObject(DataGridView1.GetClipboardContent())

复制代码

2) DataGridView 的数据粘贴

实现剪切板的拷贝比较容易,但是实现DataGridView 的直接粘贴就比较难了。「Ctrl + V」按下进行粘贴时,DataGridView 没有提供方法,只能自己实现。

以下,是粘贴时简单的事例代码,将拷贝数据粘贴到以选择单元格开始的区域内。

//当前单元格是否选择的判断

if (DataGridView1.CurrentCell == null)

return;

int insertRowIndex = DataGridView1.CurrentCell.RowIndex;

// 获取剪切板的内容,并按行分割

string pasteText = Clipboard.GetText();

if (string.IsNullOrEmpty(pasteText))

return;

pasteText = pasteText.Replace(" ", " ");

pasteText = pasteText.Replace(' ', ' ');

pasteText.TrimEnd(new char[] { ' ' });

string[] lines = pasteText.Split(' ');

bool isHeader = true;

foreach (string line in lines)

{

// 是否是列头

if (isHeader)

{

isHeader = false;

continue;

}

// 按Tab 分割数据

string[] vals = line.Split(' ');

// 判断列数是否统一

if (vals.Length - 1 != DataGridView1.ColumnCount)

throw new ApplicationException("粘贴的列数不正确。");

DataGridViewRow row = DataGridView1.Rows[insertRowIndex];

// 行头设定

row.HeaderCell.Value = vals[0];

// 单元格内容设定

for (int i = 0; i < row.Cells.Count; i++)

{

row.Cells[i].Value = vals[i + 1];

}

// DataGridView的行索引+1

insertRowIndex++;

}

复制代码

DataGridView 的右键菜单(ContextMenuStrip)

DataGridView, DataGridViewColumn, DataGridViewRow, DataGridViewCell 有ContextMenuStrip 属性。可以通过设定ContextMenuStrip 对象来控制DataGridView 的右键菜单的显示。DataGridViewColumn 的ContextMenuStrip 属性设定了除了列头以外的单元格的右键菜单。DataGridViewRow 的ContextMenuStrip 属性设定了除了行头以外的单元格的右键菜单。DataGridViewCell 的ContextMenuStrip 属性设定了指定单元格的右键菜单。// DataGridView 的ContextMenuStrip 设定

DataGridView1.ContextMenuStrip = this.ContextMenuStrip1;

// 列的ContextMenuStrip 设定

DataGridView1.Columns[0].ContextMenuStrip = this.ContextMenuStrip2;

// 列头的ContextMenuStrip 设定

DataGridView1.Columns[0].HeaderCell.ContextMenuStrip = this.ContextMenuStrip2;

// 行的ContextMenuStrip 设定

DataGridView1.Rows[0].ContextMenuStrip = this.ContextMenuStrip3;

// 单元格的ContextMenuStrip 设定

DataGridView1[0, 0].ContextMenuStrip = this.ContextMenuStrip4;

复制代码

对于单元格上的右键菜单的设定,优先顺序是:Cell > Row > Column > DataGridView

CellContextMenuStripNeeded、RowContextMenuStripNeeded事件

利用CellContextMenuStripNeeded事件可以设定单元格的右键菜单,尤其但需要右键菜单根据单元格值的变化而变化的时候。比起使用循环遍历,使用该事件来设定右键菜单的效率更高。但是,在DataGridView使用了DataSource绑定而且是VirtualMode的时候,该事件将不被引发。

//CellContextMenuStripNeeded事件处理方法

private void DataGridView1_CellContextMenuStripNeeded(object sender,

DataGridViewCellContextMenuStripNeededEventArgs e)

{

DataGridView dgv = (DataGridView)sender;

if (e.RowIndex < 0)

{

//列头的ContextMenuStrip设定

e.ContextMenuStrip = this.ContextMenuStrip1;

}

else if (e.ColumnIndex < 0)

{

//行头的ContextMenuStrip设定

e.ContextMenuStrip = this.ContextMenuStrip2;

}

else if (dgv[e.ColumnIndex, e.RowIndex].Value is int)

{

//如果单元格值是整数时

e.ContextMenuStrip = this.ContextMenuStrip3;

}

}

复制代码

同样,可以通过RowContextMenuStripNeeded事件来设定行的右键菜单。

//RowContextMenuStripNeeded事件处理方法

private void DataGridView1_RowContextMenuStripNeeded(object sender,

DataGridViewRowContextMenuStripNeededEventArgs e)

{

DataGridView dgv = (DataGridView)sender;

//当"Column1"列是Bool型且为True时、设定其的ContextMenuStrip

object boolVal = dgv["Column1", e.RowIndex].Value;

Console.WriteLine(boolVal);

if (boolVal is bool && (bool)boolVal)

{

e.ContextMenuStrip = this.ContextMenuStrip1;

}

}

复制代码

CellContextMenuStripNeeded 事件处理方法的参数中、「e.ColumnIndex=-1」表示行头、「e.RowIndex=-1」表示列头。RowContextMenuStripNeeded则不存在「e.RowIndex=-1」的情况。

微软C#中DataGridView控件使用方法

DataGridView动态添加新行: DataGridView控件在实际应用中非常实用,特别需要表格显示数据时。可以静态绑定数据源,这样就自动为DataGridView控件添加相应的行。假如需要动态为DataGridView控件添加新行,方法有很多种,下面简单介绍如何为DataGridView控件动态添加新行的两种方法: 方法一: int index=this.dataGridView1.Rows.Add(); this.dataGridView1.Rows[index].Cells[0].Value = "1"; this.dataGridView1.Rows[index].Cells[1].Value = "2"; this.dataGridView1.Rows[index].Cells[2].Value = "监听"; 利用dataGridView1.Rows.Add()事件为DataGridView控件增加新的行,该函数返回添加新行的索引号,即新行的行号,然后可以通过该索引号操作该行的各个单元格,如dataGridView1.Rows[index].Cells[0].Value = "1"。这是很常用也是很简单的方法。 方法二: DataGridViewRow row = new DataGridViewRow(); DataGridViewTextBoxCell textboxcell = new DataGridViewTextBoxCell(); textboxcell.Value = "aaa"; row.Cells.Add(textboxcell); DataGridViewComboBoxCell comboxcell = new DataGridViewComboBoxCell(); row.Cells.Add(comboxcell); dataGridView1.Rows.Add(row);

DataGridView的用法

在C# WinForm下做过项目的朋友都知道,其中的DataGridView控件默认只支持DataGridViewButtonColumn、DataGridViewCheckBoxColumn、DataGridViewComboBoxColumn、DataGridViewImageColumn、DataGridViewLinkColumn和DataGridViewTextBoxColumn六种列类型,如果你想要在DataGridView的列中添加其它的子控件,则需要自己实现DataGridViewColumn和DataGridViewCell,这就意味着你需要从现有的列中继承并改写一些方法,如实现一个支持单选按钮的列,或支持三种选择状态的多选按钮的列。 上面两个截图分别为RadioButton列和支持三种状态的CheckBox列在DataGridView中的实现效果,我是在Windows 2003中实现的,因此显示的效果跟在XP和Vista下有些区别,Vista下CheckBox的第三种状态(不确定状态)显示出来的效果是一个实心的蓝色方块。 下面我看具体来看看如何实现这两种效果。 要实现自定义的DataGridView列,你需要继承并改写两个类,一个是基于DataGridViewColumn的,一个是基于DataGridViewCell的,因为

RadionButton和CheckBox的实现原理类似,因此我们可以将这两种列采用同一种方法实现。创建DataGridViewDisableCheckBoxCell和DataGridViewDisableCheckBoxColumn两个类,分别继承自DataGridViewCheckBoxCell和DataGridViewCheckBoxColumn。代码如下: public class DataGridViewDisableCheckBoxCell: DataGridViewCheckBoxCell { public bool Enabled { get; set; } // Override the Clone method so that the Enabled property is copied. public override object Clone() { DataGridViewDisableCheckBoxCell cell = (DataGridViewDisableCheckBoxCell)base.Clone(); cell.Enabled = this.Enabled; return cell; } // By default, enable the CheckBox cell. public DataGridViewDisableCheckBoxCell() { this.Enabled = true; } // Three state checkbox column cell protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates elementState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts) { // The checkBox cell is disabled, so paint the border, background, and disabled checkBox for the cell. if (!this.Enabled) { // Draw the cell background, if specified. if ((paintParts & DataGridViewPaintParts.Background) == DataGridViewPaintParts.Background) { SolidBrush cellBackground = new SolidBrush(cellStyle.BackColor); graphics.FillRectangle(cellBackground,

DataGridView控件用法合集

DataGridView控件用法合集 目录 DataGridView控件用法合集(一) 1. DataGridView当前的单元格属性取得、变更 2. DataGridView编辑属性 3. DataGridView最下面一列新追加行非表示 4. DataGridView判断当前选中行是否为新追加的行 5. DataGridView删除行可否设定 6. DataGridView行列不表示和删除 DataGridView控件用法合集(二) 7. DataGridView行列宽度高度设置为不能编辑 8. DataGridView行高列幅自动调整 9. DataGridView指定行列冻结 10. DataGridView列顺序变更可否设定 11. DataGridView行复数选择 12. DataGridView选择的行、列、单元格取得 DataGridView控件用法合集(三) 13. DataGridView指定单元格是否表示 14. DataGridView表头部单元格取得 15. DataGridView表头部单元格文字列设定 16. DataGridView选择的部分拷贝至剪贴板 17.DataGridView粘贴 18. DataGridView单元格上ToolTip表示设定(鼠标移动到相应单元格上时,弹出说明信息) DataGridView控件用法合集(四) 19. DataGridView中的ContextMenuStrip属性 20. DataGridView指定滚动框位置 21. DataGridView手动追加列 22. DataGridView全体分界线样式设置 23. DataGridView根据单元格属性更改显示内容 24. DataGridView新追加行的行高样式设置る 25. DataGridView新追加行单元格默认值设置 DataGridView中输入错误数据的处理(五) 26. DataGridView单元格数据错误标签表示 27. DataGridView单元格内输入值正确性判断 28. DataGridView单元格输入错误值事件的捕获 DataGridView控件用法合集(六) 29. DataGridView行排序(点击列表头自动排序的设置) 30. DataGridView自动行排序(新追加值也会自动排序) 31. DataGridView自动行排序禁止情况下的排序 32. DataGridView指定列指定排序 DataGridView控件用法合集(七) 33. DataGridView单元格样式设置 34. DataGridView文字表示位置的设定 35. DataGridView单元格内文字列换行 36. DataGridView单元格DBNull值表示的设定 37. DataGridView单元格样式格式化 38. DataGridView指定单元格颜色设定

dataGridView

dataGridView已绑定表Score,显示ID和Score两个字段的值 我想获取dataGridView显示的Score字段的值(共10个记录)赋给10元素double类型数组array中,我用的代码是 for (i = 0; i < dataGridView1.Rows.Count ;i++ ) { array[i] = (double )dataGridView1.Rows[i].Cells[1].Value ; } 为啥提示强制转换无效,值必须是一个小于无限大的数呢? 应该怎样写代码? 问题补充: MSDN上的代码也看过,网上也搜过代码,基本上都是用引用dataGridView1.Rows[行号].Cells[列号].Value ,为啥转换成double就不行了.... 用array[i] = (double )dataGridView1.Rows[i].Cells[2].Value.ToString ()后又说无法将string 转换为double = = 如果去掉double强制转换又提示无法将string隐式转换为double,因为array数组是double 类型的所以应该还是要转换一下吧! 这个在MSDN上有代码示例,我就不献丑了。 你打开MSDN一看就知道了。。。 回答者:44498 - 五级2009-5-17 14:29 类型转换错误。 .ToString()后再转换! 回答者:新大软院- 六级2009-5-17 14:52 应该是转换类型有错误你把那个前面的转换类型的去掉试试 回答者:caoguangab - 四级2009-5-17 15:03 LZ试一下 array[i] = double.Parse(dataGridView1.Rows[i].Cells[2].Value.ToString ()) 不知道行不行 回答者:jdk242 - 四级2009-5-17 15:45 array[i] = dataGridView1.Rows[i].Cells[1].Value as double; 不行的话 array[i] = dataGridView1.Rows[i].Cells[1].Value.ToString() as double; 回答者:零度吹风- 四级2009-5-18 13:53

datagridview在vbnet中的操作技巧.

DataGridView在https://www.360docs.net/doc/8e17642512.html,中的操作技巧目录: 1、取得或者修改当前单元格的内容 2、设定单元格只读 3、不显示最下面的新行 4、判断新增行 5、行的用户删除操作的自定义 6、行、列的隐藏和删除 7、禁止列或者行的Resize 8、列宽和行高以及列头的高度和行头的宽度的自动调整 9、冻结列或行 10、列顺序的调整 11、行头列头的单元格 12、剪切板的操作 13、单元格的ToolTip的设置 14、右键菜单(ContextMenuStrip的设置 15、单元格的边框、网格线样式的设定 16、单元格表示值的设定 17、用户输入时,单元格输入值的设定 18、设定新加行的默认值

1、DataGridView 取得或者修改当前单元格的内容: 当前单元格指的是DataGridView 焦点所在的单元格,它可以通过DataGridView 对象的CurrentCell 属性取得。如果当前单元格不存在的时候,返回Nothing(C#是null [https://www.360docs.net/doc/8e17642512.html,] ' 取得当前单元格内容MessageBox.Show(DataGridView1.CurrentCell.Value ' 取得当前单元格的列Index MessageBox.Show(DataGridView1.CurrentCell.ColumnIndex ' 取得当前单元格的行Index MessageBox.Show(DataGridView1.CurrentCell.RowIndex 另外,使用DataGridView.CurrentCellAddress 属性(而不是直接访问单元格来确定单元格所在的行:DataGridView.CurrentCellAddress.Y 和 列:DataGridView.CurrentCellAddress.X 。这对于避免取消共享行的共享非常有用。 当前的单元格可以通过设定DataGridView 对象的CurrentCell 来改变。可以通过CurrentCell 来设定 DataGridView 的激活单元格。将CurrentCell 设为Nothing(null 可以取消激活的单元格。[https://www.360docs.net/doc/8e17642512.html,] ' 设定(0, 0 为当前单元格 DataGridView1.CurrentCell = DataGridView1(0, 0 -------------------------------------------------------------------------------- 2、DataGridView 设定单元格只读:

datagridview 数据处理方法 修改 删除 添加 下拉类表

Datagridview的三种处理数据方法 一、第一种方法 常规方法,在窗口界面上放入一个datagridview,在放各个textbox,然后通过选取对应的记录,修改textbox的值,所有的操作都在一个界面上进行,没什么多说的,大部分方法都这么做 二、弹出窗口方式 此方式,通过双击记录,或者是利用按钮操作,倾向于用按钮方式,一次修改或添加、删除一条记录。利用窗口传值方式,实现数据输入、输出,datagridview的显示跟新。 特点: 1。父子窗口之间的双向传值,很有参考意义 2.父子窗体监combox绑定数据表条件下,双向传值,很多资料接收的都不是很清晰, 主要是利用了combox.findstring()这个方法,传递回index,利用index得到value,好绕啊,废了很大劲。 3.datagridview修改、添加数据下,不用重新访问数据库,而是直接显示修改的结果, 这样感觉反应速度快,很有意义。 具体如下 修改界面

添加界面 主窗口代码 using System; using System.Collections.Generic; using https://www.360docs.net/doc/8e17642512.html,ponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using https://www.360docs.net/doc/8e17642512.html,monClass; namespace WDZ { public partial class frmMain2 : Form { public frmMain2() { InitializeComponent(); } private void frmMain2_Load(object sender, EventArgs e) { this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; //表格自适应宽度 //DataCon datacon = new DataCon(); //加载数据 DataOperate dataoperate = new DataOperate();

DataGridView实现数据的快速输入

C#利用DataGridView实现数据的快速输入 网络编程2008-03-11 16:04:03 阅读313 评论0 字号:大中小订阅 在做管理软件时,常常需要表格输入功能。表格输入极大地加快了数据输入,提高了工作效率,当然也提高了软件的竞争性。笔者最近用C#在做一套CRM时,成功地使用C# 2005里面的表格控件DataGridView 实现了表格输入功能,现在就把具体实现与各位分享: 1. 初始化工作 (1) 在Vs 2005 里面新建一个C# WinForm 应用程序:DataGridViewTest (2) 在窗体Form1上拖一个DataGridView控件:DataGridView1 (3) 在DataGridView1里添加两个列: Column1: 类型:DataGridViewComboBoxColumn HeaderText:时间 DataPropertyName:DutyTime Column2: 类型:DataGridViewTextBoxColumn HeaderText:时间 DataPropertyName:DutyTime (4)在Form1类中添加两个私有属性: private DataTable m_Table;//输入组合框控件的下拉数据 private DataTable m_DataTable;//与表格绑定的DataTable,即用户输入的最终数据 (5)在Form1类里面定义一个结构体 public struct MyRowData { public MyRowData(int no, string enDay, string cnDay) { No = no; EnDay = enDay; CnDay = cnDay; } public int No; public string EnDay; public string CnDay; } (6) 在Form1的load事件Form1_Load(object sender, EventArgs e) 加上以下初始化代码: this.dataGridView1.AllowUserToAddRows = true; this.dataGridView1.AllowUserToDeleteRows = true; this.dataGridView1.AutoGenerateColumns = false;

C#用DataGridview 做的表格效果

C#用DataGridview 做的表格效果 private void Form1_Load(object sender, EventArgs e) { DataGridViewComboBoxColumn boxc = new DataGridViewComboBoxColumn();//创建下拉框 boxc.HeaderText = "国家";//设定标题头 boxc.Items.Add("China");//设定下拉框内容 boxc.Items.Add("England"); boxc.Items.Add("U.S.A"); boxc.Items.Add("Japan"); this.dataGridView1.Columns.Add(boxc);//将下拉框添加到datagridview中 DataGridViewTextBoxColumn textc = new DataGridViewTextBoxColumn();//创建文本框字段 textc.HeaderText = "公司"; this.dataGridView1.Columns.Add(textc); textc = new DataGridViewTextBoxColumn(); textc.HeaderText = "描述"; this.dataGridView1.Columns.Add(textc); DataGridViewButtonColumn butc = new DataGridViewButtonColumn();//创建按钮字段 butc.HeaderText = "设置"; butc.Text = "设置"; butc.DefaultCellStyle.ForeColor = Color.Black; butc.DefaultCellStyle.BackColor = Color.FromKnownColor(KnownColor.ButtonFace); butc.AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells; butc.Width = 150; https://www.360docs.net/doc/8e17642512.html,eColumnTextForButtonValue = true;//如果为false,则不显示button上的text this.dataGridView1.Columns.Add(butc); butc = new DataGridViewButtonColumn(); butc.HeaderText = "删除"; butc.Text = "删除"; butc.DefaultCellStyle.ForeColor = Color.Black; butc.DefaultCellStyle.BackColor = Color.FromKnownColor(KnownColor.ButtonFace); butc.AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells; butc.Width = 150;

DataGridView中的数据在文本中显示

DataGridView中的数据在文本中显示 作者:逆命之心 实现汽车信息的查询和编辑,可根据输入的查询条件进行查询,也可以仅输入部分条件。单击“汽车基本信息”中的汽车信息,将在“汽车详细信息”中显示汽车的详细信息 1.在数据库中建一个表CaressInfo createtable CarsInfo ( CarId intprimarykeyidentity(1,1), Brand varchar(50)notnull,--品牌 Typevarchar(50)notnull,--型号 Dischaarge numeric(18,1)notnull,--排量 GearBox varchar(50)notnull check(GearBox='手动'or GearBox='自动'or GearBox='手自一体'),--变速箱 oilUse numeric(18,1)notnull,--理论耗油 Frice int notnull--报价 ) 2.创建窗体 变速箱里的内容为:不限,自动,手动,手自一体 3.代码

//DataSet实例化,声明SqlDataAdapter类型的dsa DataSet da = new DataSet(); SqlDataAdapter dsa; //声明Select方法用于查询 publicvoid Select() { this.da.Clear(); //品牌文本框(txtBrand),排量文本框(txtDischaarge),变速箱文本框(cmbGearBox) string str = this.txtBrand.Text.Trim(); string str1=this.txtDischaarge.Text.Trim(); string str2 = this.cmbGearBox.Text.Trim(); //判断各种查询条件 if (!str.Equals("") && !str1.Equals("") && !str2.Equals("")) { string Sql = "select Brand,Type,Dischaarge,GearBox,Frice from CarsInfo where Brand='" + str + "' and Dischaarge='" + str1 + "' and GearBox='" + str2 + "'"; dsa = new SqlDataAdapter(Sql, Dbhpler.con); dsa.Fill(da, "CarsInfo"); this.dgv.DataSource = da.Tables["CarsInfo"]; } if (!str.Equals("") && str1.Equals("") && str2.Equals("")) { string Sql = "select Brand,Type,Dischaarge,GearBox,Frice from CarsInfo where Brand='" + str + "' "; dsa = new SqlDataAdapter(Sql, Dbhpler.con); dsa.Fill(da, "CarsInfo"); this.dgv.DataSource = da.Tables["CarsInfo"]; } if (str.Equals("") && !str1.Equals("") && str2.Equals("")) { string Sql = "select Brand,Type,Dischaarge,GearBox,Frice from CarsInfo where Dischaarge='" + str1 + "'"; dsa = new SqlDataAdapter(Sql, Dbhpler.con); dsa.Fill(da, "CarsInfo"); this.dgv.DataSource = da.Tables["CarsInfo"]; } if (str.Equals("") && str1.Equals("") && !str2.Equals("")) { string Sql = "select Brand,Type,Dischaarge,GearBox,Frice from CarsInfo where GearBox='" + str2 + "'"; dsa = new SqlDataAdapter(Sql, Dbhpler.con); dsa.Fill(da, "CarsInfo");

NET新手指南:轻松自定义DataGridView控件

.NET新手指南:轻松自定义DataGridView控件 .NET DataGridView是一个便于使用的数据绑定控件。本文为.NET新手介绍了如何使用.NET配置向导VB Express自定义DataGridView控件。只需非常简单的修改以及一两行代码,便可以轻松实现交替颜色行,自定义排序功能以及显示编辑行。这样一个既可以浏览数据又可以编辑数据的窗体非常实用。 本文的目标读者是.NET新手。首先讲述如何创建一个新连接,然后讲述如何自定义结果控件,使用Visual Basic Express(VB Express)配置向导,本文将描述如何填充DataGridView控件,然后按照以下步骤进行提高: 1、行的显示颜色交替,构成一个绿色条效果; 2、禁用掉DataGridView内置的单列排序功能; 3、执行这个窗体时显示编辑行。 开始 VB Express提供了许多方法检索和操作外部数据,例如,只需要运行VB Express的配置向导就可以建立一个到MS Access 示例数据库Northwind.mdb中Customers的连接: 1、启动VB Express,然后在标准工具栏上点击新建项目按钮,在弹出的对话框中选择Windows Form Application; 2、在名称控件处输入一个有意义的名字,点击确定按钮; 3、点击解决方案资源管理器右下角的数据源标签,如果没有看到这个标签,从“数据”菜单中选择显示数据源即可; 4、点击新建数据源按钮,启动新建数据源配置向导; 5、点击下一步,数据库选项保持默认设置; 6、在下一个面板中点击新建连接; 7、在弹出的新建连接对话框中,点击修改,从弹出的修改数据源对话框中选择Access数据库文件,然后点击确定按钮; 8、在新建连接对话框中点击浏览,找到Northwind.mdb的位置(在Office目录的Samples文件夹下),然后点击确定按钮; 9、点击测试连接,然后点击确定按钮清除确认消息; 10、如果连接工作正常,点击确定返回向导窗口,然后点击下一步继续;

DataGridView同步更新到数据库

DataGridView同步更新到数据库 一。绑定数据SqlConnection con = null; SqlDataAdapter sa = null; SqlCommandBuilder sb = null; DataTable dt = null; BindingSource bs = null; 窗体时绑定 数据private void DataBingding_Load(object sender, EventArgs e) { con = new SqlConnection("server=.;uid=sa;pwd=sa;database=pubs;"); try { con.Open(); sa = new SqlDataAdapter("select * from jobs", con); sb = new SqlCommandBuilder(sa);//绑定SqlDataAdapter dt = new DataTable(); sa.Fill(dt); this.dataGridView1.DataSource = dt; bs = new BindingSource(); bs.DataSource = dt;//绑定BindingSource con.Close(); } catch (Exception ex) { con.Close(); throw ex; } } SqlConnection con = null; SqlDataAdapter sa = null; SqlCommandBuilder sb = null; DataTable dt = null; BindingSource bs = null; //加载窗体时绑定数据private void DataBingding_Load(object sender, EventArgs e) { con = new SqlConnection("server=.;uid=sa;pwd=sa;database=pubs;"); try { con.Open(); sa = new SqlDataAdapter("select * from jobs", con); sb = new SqlCommandBuilder(sa);//绑定

dataGridView的用法

dataGridView的几个基本操作: 1、获得某个(指定的)单元格的值: dataGridView1.Row[i].Cells[j].Value; 2、获得选中的总行数: dataGridView1.SelectedRows.Count; 3、获得当前选中行的索引: dataGridView1.CurrentRow.Index; 4、获得当前选中单元格的值: dataGridView1.CurrentCell.Value; 5、取选中行的数据 string[] str = new string[dataGridView.Rows.Count]; for(int i;i

datagridview绑定数据源的几种常见方式

datagridview绑定数据源的几种常见方式datagridview绑定数据源的几种常见方式 //////////////开始以前,先认识一下WinForm控件数据绑定的两种形式,简单数据绑定和复杂数据绑定。 //////////////1)简单数据绑定 //////////////////using (SqlConnection conn = new SqlConnection(Config urationManager.ConnectionStrings["connStr"].ToString())) //////////////////{ ////////////////// SqlDataAdapter sda = new SqlDataAdapter("Select * Fr om T_Class Where F_Type='Product' order by F_RootID,F_Orders", conn); ////////////////// DataSet Ds = new DataSet(); ////////////////// sda.Fill(Ds, "T_Class"); ////////////////// //使用DataSet绑定时,必须同时指明DateMember ////////////////// //this.dataGridView1.DataSource = Ds; ////////////////// //this.dataGridView1.DataMember = "T_Class"; ////////////////// //也可以直接用DataTable来绑定 ////////////////// this.dataGridView1.DataSource = Ds.Tables["T_Class"]; //////////////////}

c# winform 关于datagridview一些操作

设置字段名 设置字段值 设定单元格表示 Error图标 设定当前单元格 取得当前单元格内容 取得当前单元格的列 Index 取得当前单元格的行 Index 向下一行 向上一行 取消 DataGridView1 为只读 设置 DataGridView1 为只读 设置 DataGridView1 的第2列整列单元格为只读并变色设置 DataGridView1 的第3行整行单元格为只读并变色设置 DataGridView1 的[0,0]单元格为只读并变色 设置 DataGridView1 的第2列整列单元格为只读并变色设置 DataGridView1 的第3行整行单元格为只读并变色设置 DataGridView1 的[0,0]单元格为只读并变色 设置用户不能手动给 DataGridView1 添加新行 设置用户可以手动给 DataGridView1 添加新行 禁止DataGridView1的行删除操作。 允许DataGridView1的行删除操作。 DataGridView1的第一列隐藏 DataGridView1的第一行隐藏 DataGridView1的第一列显示 DataGridView1的第一行显示 列头隐藏 行头隐藏 列头显示 行头显示 删除名为"Column1"的列 删除第四列 删除第三行 禁止用户改变DataGridView1的所有列的列宽 禁止用户改变DataGridView1的所有行的行高 允许用户改变DataGridView1的所有列的列宽 允许用户改变DataGridView1的所有行的行高 禁止用户改变DataGridView1的第一列的列宽 禁止用户改变DataGridView1的第一列的行宽 第一列的最小列宽设定为 100 第一行的最小行高设定为 50 禁止用户改变列头的高度 禁止用户改变行头的宽度 设定包括Header和所有单元格的列宽自动调整 设定包括Header和所有单元格的行高自动调整

DataGridView中数据存入数据库方法

DataGridView做了新的数据显示控件加入到了.Net 05中,其强大的编辑能力让其成为了数据显示中必不可少的控件。目前对于DataGridView中的更新讲的挺多的,但直接的插入数据好像讲的不是太多,下面就以我的例子说明一下。 1、首先新建一个项目。 2、建立一个数据库连接类LinkDataBase。因为数据库操作有很多都是重复性工作,所以我们写一个类来简化对数据库的操作。 using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; using System.Data.Sql; namespace Test ...{ class LinkDataBase ...{ //设置连接字符串 private string strSQL; //与数据库连接 private string connectionString = "Data Source=Localhost;Initial Catalog=Test;Integr ated Security=True"; private SqlConnection myConnection; private SqlCommandBuilder sqlCmdBld; private DataSet ds = new DataSet(); private SqlDataAdapter da; public LinkDataBase() ...{ } //根据输入的SQL语句检索数据库数据 public DataSet SelectDataBase(string tempStrSQL, string tempTableName) ...{ this.strSQL = tempStrSQL; this.myConnection = new SqlConnection(connectionString); this.da = new SqlDataAdapter(this.strSQL, this.myConnection); this.ds.Clear(); this.da.Fill(ds, tempStrSQL); //返回填充了数据的DataSet,其中数据表以tempTableName给出的字符串命名 return ds; } //数据库数据更新(传DataSet和DataTable的对象) public DataSet UpdateDataBase(DataSet changedDataSet, string tableName) ...{ this.myConnection = new SqlConnection(connectionString);

C# Winform中让DataGridView单元格显示图片

C# Winform中让DataGridView单元格显示图片 private void bind(DateTime st,DateTime et) { this.dataGridView1.DataSource = null; // this.dataGridView1.Refresh(); this.dataGridView1.Columns.Clear(); this.dataGridView1.DataSource = BusinessUserBLL.GetWaterTicketForConfirm(st, et, FrmMain.sessionuser.wstationobj.Id); this.dataGridView1.Columns[0].HeaderText = "开票日期"; this.dataGridView1.Columns[0].Width = 120; this.dataGridView1.Columns[0].DataPropertyName = "日期"; this.dataGridView1.Columns[1].HeaderText = "水票编号"; this.dataGridView1.Columns[1].DataPropertyName = "水票编号"; this.dataGridView1.Columns[2].HeaderText = "用户名"; this.dataGridView1.Columns[2].Width = 80; this.dataGridView1.Columns[2].DataPropertyName = "用户名"; for (int i = 0; i < this.dataGridView1.Columns.Count; i++) { if (i > 2) { this.dataGridView1.Columns[i].Visible = false; }

相关文档
最新文档