home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Plugins
How do I create a OSD keyboard?
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="samuel337" data-source="post: 71513" data-attributes="member: 10347"><p>This code will show it:</p><p></p><p>[code]</p><p>VirtualSearchKeyboard keyBoard = (VirtualSearchKeyboard)GUIWindowManager.GetWindow(1001);</p><p>keyBoard.Text = String.Empty;</p><p>keyBoard.Reset();</p><p>keyBoard.DoModal(activeWindow); // show it...</p><p></p><p>// keyBoard.Text will give you the input once the user has closed the keyboard</p><p>[/code]</p><p></p><p>If you want to be notified everytime a key is pressed on the keyboard, you can subscribe to the events like so:</p><p></p><p>[code]</p><p>keyBoard.TextChanged += new MediaPortal.Dialogs.VirtualSearchKeyboard.TextChangedEventHandler(keyboard_TextChanged); // add the event handler[/code]</p><p></p><p>Sam</p></blockquote><p></p>
[QUOTE="samuel337, post: 71513, member: 10347"] This code will show it: [code] VirtualSearchKeyboard keyBoard = (VirtualSearchKeyboard)GUIWindowManager.GetWindow(1001); keyBoard.Text = String.Empty; keyBoard.Reset(); keyBoard.DoModal(activeWindow); // show it... // keyBoard.Text will give you the input once the user has closed the keyboard [/code] If you want to be notified everytime a key is pressed on the keyboard, you can subscribe to the events like so: [code] keyBoard.TextChanged += new MediaPortal.Dialogs.VirtualSearchKeyboard.TextChangedEventHandler(keyboard_TextChanged); // add the event handler[/code] Sam [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
How do I create a OSD keyboard?
Contact us
RSS
Top
Bottom