------ #### SuperDesign V3.0.2412.2001 - *.[新增]新增程序更新日志设置和自动发布功能。 - *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
27 lines
721 B
C#
27 lines
721 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AutocompleteMenuNS
|
|
{
|
|
/// <summary>
|
|
/// Wrapper over the control like TextBox.
|
|
/// </summary>
|
|
public interface ITextBoxWrapper
|
|
{
|
|
Control TargetControl { get; }
|
|
string Text { get; }
|
|
string SelectedText { get; set; }
|
|
int SelectionLength { get; set; }
|
|
int SelectionStart { get; set; }
|
|
Point GetPositionFromCharIndex(int pos);
|
|
bool Readonly { get; }
|
|
event EventHandler LostFocus;
|
|
event ScrollEventHandler Scroll;
|
|
event KeyEventHandler KeyDown;
|
|
event MouseEventHandler MouseDown;
|
|
}
|
|
}
|