首页上一页 1 下一页尾页 1 条记录 1/1页
c#开发实战宝典中企业人事管理系统的问题
发表在C#图书答疑
2010-10-17
是否精华
是
否
版块置顶:
是
否
小科老师您好:
c#开发实战宝典中企业人事管理系统的人事档案管理模块中有如下代码:
public string Grid_Inof(DataGridView DGrid)
{
byte[] pic; //定义一个字节数组
//当DataGridView控件的记录>1时,将当前行中信息显示在相应的控件上
if (DGrid.RowCount > 1)
{
S_0.Text = DGrid[0, DGrid.CurrentCell.RowIndex].Value.ToString();
S_1.Text = DGrid[1, DGrid.CurrentCell.RowIndex].Value.ToString();
S_2.Text = Convert.ToString(DGrid[2, DGrid.CurrentCell.RowIndex].Value).Trim();
S_3.Text = MyMC.Date_Format(Convert.ToString(DGrid[3, DGrid.CurrentCell.RowIndex].Value).Trim());
S_4.Text = Convert.ToString(DGrid[4, DGrid.CurrentCell.RowIndex].Value).Trim();
S_5.Text = DGrid[5, DGrid.CurrentCell.RowIndex].Value.ToString();
S_6.Text = DGrid[6, DGrid.CurrentCell.RowIndex].Value.ToString();
S_7.Text = DGrid[7, DGrid.CurrentCell.RowIndex].Value.ToString();
S_8.Text = DGrid[8, DGrid.CurrentCell.RowIndex].Value.ToString();
S_9.Text = DGrid[9, DGrid.CurrentCell.RowIndex].Value.ToString();
……
S_5.Text = DGrid[5, DGrid.CurrentCell.RowIndex].Value.ToString();其中5是代表当前信息的行数么?这个行数是怎么算的呢?
谢谢
c#开发实战宝典中企业人事管理系统的人事档案管理模块中有如下代码:
public string Grid_Inof(DataGridView DGrid)
{
byte[] pic; //定义一个字节数组
//当DataGridView控件的记录>1时,将当前行中信息显示在相应的控件上
if (DGrid.RowCount > 1)
{
S_0.Text = DGrid[0, DGrid.CurrentCell.RowIndex].Value.ToString();
S_1.Text = DGrid[1, DGrid.CurrentCell.RowIndex].Value.ToString();
S_2.Text = Convert.ToString(DGrid[2, DGrid.CurrentCell.RowIndex].Value).Trim();
S_3.Text = MyMC.Date_Format(Convert.ToString(DGrid[3, DGrid.CurrentCell.RowIndex].Value).Trim());
S_4.Text = Convert.ToString(DGrid[4, DGrid.CurrentCell.RowIndex].Value).Trim();
S_5.Text = DGrid[5, DGrid.CurrentCell.RowIndex].Value.ToString();
S_6.Text = DGrid[6, DGrid.CurrentCell.RowIndex].Value.ToString();
S_7.Text = DGrid[7, DGrid.CurrentCell.RowIndex].Value.ToString();
S_8.Text = DGrid[8, DGrid.CurrentCell.RowIndex].Value.ToString();
S_9.Text = DGrid[9, DGrid.CurrentCell.RowIndex].Value.ToString();
……
S_5.Text = DGrid[5, DGrid.CurrentCell.RowIndex].Value.ToString();其中5是代表当前信息的行数么?这个行数是怎么算的呢?
谢谢