Hello:
I want to change the keyboard layout of a textbox. In docs I found the InputScope property, but don't know how to manipulate it.
code like this don't work:
InputScopeName^ isn = ref new InputScopeName(InputScopeNameValue::TelephoneNumber);
InputScope^ is = ref new InputScope();
is->Names->Append(isn);
is->SetValue(textbox_control->InputScopeProperty, isn);
textbox_control->SetValue(textbox_control->InputScopeProperty, isn);
textbox_control->InputScope->Dispatcher->ProcessEvents(Windows::UI::Core::CoreProcessEventsOption::ProcessAllIfPresent);