Reputation: 175
i am creating desktop application like Gujarati To English Dictionary in C#.
For that i need onscreen Gujarati keyboard to display.
How to solve this..?
any help is appreciated.
Thank you all.
Upvotes: 0
Views: 753
Reputation: 4247
A very simple approach to start with:
Text
property)Something like this:
private TextBox userInputBox;
private void OnButtonClick(Object sender, EventArgs args)
{
Button button = sender as Button;
userInputBox.Text += button.Text;
}
Upvotes: 1