迷一样的逍遥人
晴带雨伞,包带干粮,点滴积累,水到渠成.

private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
        {

            PackageID = this.dataGridView1["PackageID", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();

            this.txt_PackageName.Text = this.dataGridView1["PackageName", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();
            this.txt_UsePrice.Text = this.dataGridView1["UsePrice", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();
            this.txt_Price.Text = this.dataGridView1["Price", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();
            this.txt_Validity.Text = this.dataGridView1["Validity", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();
            this.comboBox_Category.Text = this.dataGridView1["Category", this.dataGridView1.CurrentCell.RowIndex].Value.ToString();
        }

posted on 2010-01-06 19:41  谜一样的逍遥人  阅读(2355)  评论(0编辑  收藏  举报