データを更新した後、DataGridView コントロールの選択された行を維持しようとしています。これは私のコードです
public partial class frmPlant : Form
{
string gSelectedPlant;
private void frmPlant_Load(object sender, EventArgs e)
{
dataGridView1.AutoGenerateColumns = true;
dataGridView1.DataSource = bindingSource1;
FillData();
dataGridView1.DataMember = "Table";
}
private void FillData()
{
ds = _DbConnection.returnDataSet(_SQlQueries.SQL_PlantSelect);
bindingSource1.DataSource = ds.Tables[0];
}
public DataSet returnDataSet(string txtQuery)
{
conn.Open();
sqlCommand = conn.CreateCommand();
DB = new SQLiteDataAdapter(txtQuery, conn);
DS.Reset();
DB.Fill(DS);
conn.Close();
return (DS);
}
private void dataGridView1_Selectionchanged(object sender, EventArgs e)
{
if (dataGridView1.SelectedRows.Count > 0)
{
gSelectedPlant = dataGridView1.SelectedRows[0].Cells["PlantId"].Value.ToString();
}
}
private void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
int selectedIndex;
if (!string.IsNullOrEmpty(gSelectedPlant) && e.ListChangedType == ListChangedType.Reset)
{
if (ds.Tables.Count > 0)
{
selectedIndex = bindingSource1.Find("PlantId", gSelectedPlant);
if (selectedIndex <= 0)
selectedIndex = 0;
dataGridView1.Rows[selectedIndex].Selected = true;
}
else
{
gSelectedPlant = string.Empty;
}
}
}
}
選択した行の行インデックスを維持することはまだできません。行 1 にスクロールします。私が使ったブログはこちら http://www.makhaly.net/Blog/9
Form1 (このコードがすべてある場所) の行を選択し、次のフォームに進むと、特定の Plant に関する詳細情報が表示されます。この最初のフォームに戻ると、[戻る] ボタンを押して、行が 1 にリセットされます。gSelectedPlant は値 1 と selectedindex = 0 を取ります。 gSelectedPlant の。はい、最初は null を取りますが、databindingcomplete では 1 になります。