Working on new on screen keyboard

This commit is contained in:
LarsBrubaker 2022-01-24 09:52:27 -08:00
parent 2144ed477f
commit 9e80776dfe
4 changed files with 23 additions and 28 deletions

View file

@ -300,7 +300,7 @@ namespace MatterHackers.MatterControl
// var systemWindow = new DesktopMainWindow(400, 200)
var (width, height) = RootSystemWindow.GetStartupBounds();
var systemWindow = Application.LoadRootWindow(width, height);
var rootSystemWindow = Application.LoadRootWindow(width, height);
var theme = ApplicationController.Instance.Theme;
SingleWindowProvider.SetWindowTheme(theme.TextColor,
@ -312,7 +312,10 @@ namespace MatterHackers.MatterControl
ApplicationController.Instance.KeepAwake = KeepAwake;
systemWindow.ShowAsSystemWindow();
// Add a the on screen keyboard manager
//_ = new SoftKeyboardDisplayStateManager(rootSystemWindow);
rootSystemWindow.ShowAsSystemWindow();
}
private static string[] shellFileExtensions = new string[] { ".stl", ".amf", ".3mf", ".obj" };