私はデータグリッドビューと追加ボタンを持っています。datagridview にデータを追加するたびに、新しく追加された行またはその最後にフォーカスを設定したいと考えています。たぶん、私のデータグリッドビューは常に最後にデータを追加/挿入するためです。
今のところ私のコードは次のとおりです:(イベントにエラーがありますSelectionChanged
)。
Boolean flag_cell_edited;
int currentRow;
int currentColumn;
private void ListView_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
flag_cell_edited = true;
currentColumn = e.ColumnIndex;
currentRow = e.RowIndex;
}
private void ListView_SelectionChanged(object sender, EventArgs e)
{
if(flag_cell_edited)
{
ListView.CurrentCell = ListView(currentColumn, currentRow);
flag_cell_edited = false;
}
}
行を追加
static DataGridView _dg;
SqlDataAdapter _da;
public void Add()
{
sc.Open();
try
{
using (cmd = new SqlCommand(@"INSERT INTO TableVotersInfo (Education, idnum, FirstName, MiddleName, LastName, SchoolYear, ControlNum, VResult)
SELECT @ed, @idnum, @firstname, @middlename, @lastname, @schoolyear, @controlnum, 'Not Voted'
WHERE @idNum NOT IN (SELECT idNum FROM TableVotersInfo);", sc))
{
Param();
var rowsAffected = cmd.ExecuteNonQuery();
if (rowsAffected == 0)
{
MessageBox.Show("ID number already exist!");
FAddVoters._checkID = checkID;
FAddVoters._cleardata = "0";
}
else
{
MessageBox.Show("Data Stored Successfully!");
FAddVoters._cleardata = cleardata;
FAddVoters._checkID = "0";
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
sc.Close();
}
}
public void retList()
{
sc.Open();
cmd = new SqlCommand("SELECT * FROM TableVotersInfo", sc);
try
{
_da = new SqlDataAdapter();
_da.SelectCommand = cmd;
DataTable _dt = new DataTable();
_da.Fill(_dt);
BindingSource bs = new BindingSource();
bs.DataSource = _dt;
_dg.DataSource = bs;
_da.Update(_dt);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
sc.Close();
}
}