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