コード例 #1
0
 public TextEditorEngine(TextInputFieldBase field)
 {
     textInputField = field;
 }
コード例 #2
0
 public TouchScreenTextEditorEventHandler(TextEditorEngine editorEngine, TextInputFieldBase textInputField)
     : base(editorEngine, textInputField)
 {
     secureText = string.Empty;
 }
コード例 #3
0
 protected TextEditorEventHandler(TextEditorEngine editorEngine, TextInputFieldBase textInputField)
 {
     this.editorEngine   = editorEngine;
     this.textInputField = textInputField;
     this.textInputField.SyncTextEngine();
 }