如何获取C#Custom TextBox以在鼠标单击时更改光标位置

时间:2014-09-03 07:04:06

标签: c# textbox controls

我有一个自定义文本框,它只是一个带有一些其他小功能的标准文本框,它们都按预期工作。我遇到的问题是单击字段以更改光标位置实际上不会更改光标的位置,光标只停留在字段的开头。

以下是我正在使用的代码,我希望有人能够告诉我我缺少的内容:

using System;
using System.ComponentModel;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace Test.UI.Controls
{
    public partial class TestTextBox : TextBox
    {
        private Color normalForegroundColor = Color.Gray;
        private Color textChangedForegroundColor = Color.Red;
        private string startingText = string.Empty;

        [Description("TextBox border color when text is changed"), Category("Appearance")]
        public Color TextChangedColor
        {
            get { return textChangedForegroundColor; }
            set { textChangedForegroundColor = value; }
        }

        [Description("Set starting text of textbox, as well as the Text property"), Category("Appearance")]
        public String StartingText
        {
            get { return startingText; }
            set 
            { 
                startingText = value;
                this.Text = startingText;
            }
        }

        public TestTextBox()
        {
            InitializeComponent();
            normalForegroundColor = this.ForeColor;
        }

        protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);
            this.ForeColor = this.Text == startingText ? normalForegroundColor : textChangedForegroundColor;
        }
    }
}

下面是自定义文本框中包含数据的内容的屏幕抓取: Custom TextBox Example

0 个答案:

没有答案