आपके आवेदन के आधार पर, आप शायद टेक्स्ट बदलाव पर उस फ़ॉन्ट असाइनमेंट का उपयोग करना चाहते हैं या प्रश्न में टेक्स्टबॉक्स का फोकस / अनफ़ोकस करेंगे।
यहां एक त्वरित नमूना है कि यह कैसा दिख सकता है (खाली रूप, बस एक टेक्स्टबॉक्स के साथ। फ़ॉन्ट तब बोल्ड हो जाता है जब पाठ 'बोल्ड', केस-इनसेंसिटिव पढ़ता है):
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
RegisterEvents();
}
private void RegisterEvents()
{
_tboTest.TextChanged += new EventHandler(TboTest_TextChanged);
}
private void TboTest_TextChanged(object sender, EventArgs e)
{
// Change the text to bold on specified condition
if (_tboTest.Text.Equals("Bold", StringComparison.OrdinalIgnoreCase))
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Bold);
}
else
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Regular);
}
}
}