Hello,
VS 2008
Adding number and letters on buttons.
I have a form that looks like a phone with buttons. I am wondering how to put number and letters on the buttons.
i.e.
1 2 3
abc def ghi
Just another question. I have wired up all the buttons for one click event. And display the numbers in the text box display.
How would it be possible to display something like a 'c' or 'e' etc. The user would have to click 4 times for a 'c', and twice for a 'e'.
How is this normally implemented in a normal phone application.
Many thanks for any advice,
Steve
VS 2008
Adding number and letters on buttons.
I have a form that looks like a phone with buttons. I am wondering how to put number and letters on the buttons.
i.e.
1 2 3
abc def ghi
Just another question. I have wired up all the buttons for one click event. And display the numbers in the text box display.
Code:
private void DialerKeyPress_Click(object sender, EventArgs e)
{
this.txtDisplay.Text += ((Button)sender).Text;
}
How would it be possible to display something like a 'c' or 'e' etc. The user would have to click 4 times for a 'c', and twice for a 'e'.
How is this normally implemented in a normal phone application.
Many thanks for any advice,
Steve