Esempio n. 1
0
        private void SetOutputMethod(InputMethod.PanelLayoutType inputLayoutType)
        {
            InputMethod im = new InputMethod();

            im.PanelLayout = inputLayoutType;
            textField.InputMethodSettings = im.OutputMap;
        }
Esempio n. 2
0
        public void InputMethodPanelLayout()
        {
            tlog.Debug(tag, $"InputMethodPanelLayout START");
            InputMethod a1 = new InputMethod
            {
                PanelLayout = InputMethod.PanelLayoutType.Email
            };

            InputMethod.PanelLayoutType p1 = a1.PanelLayout;

            tlog.Debug(tag, $"InputMethodPanelLayout END (OK)");
            Assert.Pass("InputMethodPanelLayout");
        }