Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テキスト ボックス内のテキストの量が 10 に等しい場合に満たされる条件は? 現在、イベントはすべてのキーストロークで発生しています。
private void textBox1_TextChanged(object sender, EventArgs e) { if(textbox1.Length == 10) { } }
private void textBox1_TextChanged(object sender, EventArgs e) { if (textBox1.TextLength==10) { //read DB and display stuff textBox1.Clear(); } }
そして、他の回答者と同じように、現在のコードもコンパイルされないので、私は興味があります。また、VS 2010/2012で記述した場合、オートコンプリートはすでにTextLength
TextLength