9 つの TextBox コントロールを持つ WinForm アプリケーションがあります。空またはnullのテキストボックスをユーザーに警告するにはどうすればよいですか?
var incompleteTextBoxes = this.Controls.OfType<TextBox>().Where(tb => string.IsNullOrWhiteSpace(tb.Text));
foreach (var textBox in inCompleteTextBoxes)
{
// give user feedback about which text boxes they have yet to fill out
}