Using a windows forms ListBox, how can I bind both double-click and return key to a single action. The way I have it I just copied the same action into both listBox1_MouseDoubleClick and listBox1_KeyUp.
public partial class MyForm : Form
{
public MyForm()
{
InitializeComponent();
}
private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.textBox1.Text = this.listBox1.SelectedItem.ToString(); // Repeated
}
private void listBox1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Return)
{
this.textBox1.Text = this.listBox1.SelectedItem.ToString(); // Repeated
}
}
}
Not really a big deal for just two events but is there a way to bind both of these listeners to the single action?