Skip to content

Commit

Permalink
More rows
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Aug 23, 2020
1 parent 2085ae2 commit 82f470c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PointerSearcher/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions PointerSearcher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ private IDumpDataReader CreateDumpDataReader(DataGridViewRow row, bool allowUnkn
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Style.BackColor = Color.White;
dataGridView1.BeginEdit(true);
// dataGridView1.BeginEdit(true);
}
private void SetProgressBar(int percent)
{
Expand Down Expand Up @@ -421,7 +421,10 @@ private void dataGridView1_CellContentClick(object sender, DataGridViewCellEvent

private void Form1_Load(object sender, EventArgs e)
{

dataGridView1.Rows.Add();
dataGridView1.Rows.Add();
dataGridView1.Rows.Add();
dataGridView1.Rows.Add();
}

private void Export_to_SE_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 82f470c

Please sign in to comment.