浏览代码

whitespace.

Dan Walmsley 3 年之前
父节点
当前提交
aef3bf7dcc
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

+ 4 - 2
src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

@@ -48,11 +48,13 @@ namespace Avalonia.Controls
         }
         }
 
 
         public bool SupportsSurroundingText => false;
         public bool SupportsSurroundingText => false;
-
-
+        
         public event EventHandler? SurroundingTextChanged { add { } remove { } }
         public event EventHandler? SurroundingTextChanged { add { } remove { } }
+        
         public TextInputMethodSurroundingText SurroundingText => throw new NotSupportedException();
         public TextInputMethodSurroundingText SurroundingText => throw new NotSupportedException();
+        
         public string? TextBeforeCursor => null;
         public string? TextBeforeCursor => null;
+        
         public string? TextAfterCursor => null;
         public string? TextAfterCursor => null;
 
 
         private void OnCaretBoundsChanged(object? sender, EventArgs e) => CursorRectangleChanged?.Invoke(this, EventArgs.Empty);
         private void OnCaretBoundsChanged(object? sender, EventArgs e) => CursorRectangleChanged?.Invoke(this, EventArgs.Empty);