处理在C#中粘贴事件(Handle a paste event in c#)

2019-08-22 17:49发布

我创建了一个静态类数字文本框,但我wan't控制哪些用户在文本框中德粘贴。 为了处理粘贴事件我使用TextChanged事件:

        static public void textChanged(EventArgs e, TextBox textbox, double tailleMini, double tailleMaxi, string carNonAutorisé)
    {            
        //Recherche dans la TextBox, la première occurrence de l'expression régulière.
        Match match = Regex.Match(textbox.Text, carNonAutorisé);
        /*Si il y a une Mauvaise occurence:
         *   - On efface le contenu collé
         *   - On prévient l'utilisateur 
         */
        if (match.Success)
        {
            textbox.Text = "";
            MessageBox.Show("Votre copie un ou des caractère(s) non autorisé", "Attention", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
        tailleTextBox(textbox, tailleMini, tailleMaxi);
    }

在另一类我用这个静态梅索德这样

    private void tbxSigné_TextChanged(object sender, EventArgs e)
    {
        FiltreTbx.textChanged(e, tbxSigné, double.MinValue, double.MaxValue, @"[^\d\,\;\.\-]");
    }

我wan't做的是类似的东西:

  if (match.Success)
    {
        textbox.Text = //Write the text before users paste in the textbox;

    }

任何人都有一个想法吗?

Answer 1:

首先,你有使用其认为MaskedTextBox中呢? 它可以处理的字符为你筛选。

然而,对于这项工作的缘故,你能想到沿着这条线的解决方案的。 这是用法:

public Form1()
{
    InitializeComponent();

    FiltreTbx.AddTextBoxFilter(tbxSigné,
                               double.MinValue, double.MaxValue,
                               @"[^\d\,\;\.\-]");
}

AddTextBoxFilter是一个新的静态方法,你只能叫一次。 这将增加一个框TextChanged处理程序到TextBox 。 该处理器采用的是封闭存储先前Text在文本框中。

您的静态方法获得一个额外的参数沿着这条以前的文本通过。

public class FiltreTbx
{
    public static void AddTextBoxFilter(TextBox textbox,
                                        double tailleMini, double tailleMaxi,
                                        string carNonAutorisé)
    {
        string previousText = textbox.Text;

        textbox.TextChanged +=
            delegate(object sender, EventArgs e)
            {
                 textChanged(e, textbox, tailleMini, tailleMaxi,
                             carNonAutorisé, previousText);
                 previousText = textbox.Text;
            };
    }

    static public void textChanged(EventArgs e, TextBox textbox,
                                   double tailleMini, double tailleMaxi,
                                   string carNonAutorisé, string previousText)
    {
        //Recherche dans la TextBox, la première occurrence de l'expression régulière.
        Match match = Regex.Match(textbox.Text, carNonAutorisé);
        /*Si il y a une Mauvaise occurence:
         *   - On efface le contenu collé
         *   - On prévient l'utilisateur 
         */
        if (match.Success)
        {
            // Set the Text back to the value it had after the previous
            // TextChanged event.
            textbox.Text = previousText;
            MessageBox.Show("Votre copie un ou des caractère(s) non autorisé",
                            "Attention", MessageBoxButtons.OK,
                            MessageBoxIcon.Information);
        }
        tailleTextBox(textbox, tailleMini, tailleMaxi);
    }
}

我不知道什么tailleTextBox是应该做的正好,你不包括源代码,但我怀疑它强制的最小值和最大值?

另一种解决方案

如果你想自己处理粘贴操作,甚至发生之前,你必须要拦截WM_PASTE消息的文本框中。 这样做的一种方式是将通过创建一个专门的控制:

using System;
using System.Windows.Forms;

class MyTextBox : TextBox
{
    private const int WM_PASTE = 0x0302;

    protected override void WndProc(ref Message m)
    {
        if (m.Msg != WM_PASTE)
        {
            // Handle all other messages normally
            base.WndProc(ref m);
        }
        else
        {
            // Some simplified example code that complete replaces the
            // text box content only if the clipboard contains a valid double.
            // I'll leave improvement of this behavior as an exercise :)
            double value;
            if (double.TryParse(Clipboard.GetText(), out value))
            {
                Text = value.ToString();
            }
        }
    }
}

如果你定义在你的WinForms项目类,你应该能够将其拖动到窗体像任何其他控制。



文章来源: Handle a paste event in c#