7

静的クラスの数値テキスト ボックスを作成しましたが、ユーザーがテキスト ボックスに何を貼り付けるかを制御したくありません。貼り付けイベントを処理するには、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\,\;\.\-]");
    }

私がしたくないことは、そのようなものです:

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

    }

誰でもアイデアがありますか?

4

1 に答える 1

11

まず、代わりに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、テキスト ボックスへのメッセージをインターセプトする必要があります。1 つの方法は、特殊なコントロールを作成することです。

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 プロジェクトでクラスを定義すると、他のコントロールと同様にフォームにドラッグできるはずです。

于 2013-04-13T14:08:31.503 に答える