|
|
@@ -4884,24 +4884,4 @@ public class TextView : View, IDesignable
|
|
|
|
|
|
base.Dispose (disposing);
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-/// <summary>
|
|
|
-/// Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete'
|
|
|
-/// options. An implementation on a TextView.
|
|
|
-/// </summary>
|
|
|
-public class TextViewAutocomplete : PopupAutocomplete
|
|
|
-{
|
|
|
- /// <inheritdoc/>
|
|
|
- protected override void DeleteTextBackwards () { ((TextView)HostControl!).DeleteCharLeft (); }
|
|
|
-
|
|
|
- /// <inheritdoc/>
|
|
|
- protected override void InsertText (string accepted) { ((TextView)HostControl!).InsertText (accepted); }
|
|
|
-
|
|
|
- /// <inheritdoc/>
|
|
|
- protected override void SetCursorPosition (int column)
|
|
|
- {
|
|
|
- ((TextView)HostControl!).CursorPosition =
|
|
|
- new (column, ((TextView)HostControl).CurrentRow);
|
|
|
- }
|
|
|
-}
|
|
|
+}
|