我有DataGridView
个不同的号码。每按一次开始,所选行将被发送到我的Arduino。
现在我想按开始和每一行,我选择将立即发送,直到我按停止。
private void btn_start_auto_Click(object sender, EventArgs e)
{
if (isConnected)
{
port.Write("#TEXT" + length_txt.Text + "#\n");
}
}
private void btn_up_Click(object sender, EventArgs e)
{
if (dataGridView1.Rows.Count != 0)
{
selectedRow--;
if (selectedRow < 0)
{
selectedRow = dataGridView1.RowCount - 1;
}
dataGridView1.Rows[selectedRow].Selected = true;
dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.SelectedRows[0].Index;
}
}
我不知道如何“设置”开始“信号”并使用我的停止按钮重置它。
答案 0 :(得分:-1)
您最常在事件网格行中编写代码点击“甚至可以点击行”