Search found 4 matches
- 05 Apr 2020, 18:47
- Forum: General Discussion
- Replies: 7
- Views: 1704
Re: Sending key down events to TextBox
Sending all 3 events ended up doing it. I miss read the documentation the first time. Thanks for your help!
- 04 Apr 2020, 21:53
- Forum: General Discussion
- Replies: 7
- Views: 1704
Re: Sending key down events to TextBox
I have tried sending events directly to the view but still no luck. It is receiving the events but the text is not updating.
- 04 Apr 2020, 18:41
- Forum: General Discussion
- Replies: 7
- Views: 1704
Re: Sending key down events to TextBox
How would I go about doing that? The View doesn't contain a RaiseEvent method. Is there another way I can send events directly to the View? If I bind to the KeyDown event on the TextBox it does receive the event ((TextBox)FindName("TestInput")).KeyDown += (sender, keyArgs) => { Debug.Log(keyArgs.Key...
- 04 Apr 2020, 01:11
- Forum: General Discussion
- Replies: 7
- Views: 1704
Sending key down events to TextBox
I am trying to send KeyDown/KeyUp Events to a TextBox when a User clicks a button from a separate NoesisView, something close to a virtual keyboard. I have been using Unity and C# I did a bunch of tests on the same NoesisView to see if that was the issue, but still no luck. I have tried creating a n...