আপনার অ্যাপ্লিকেশন উপর নির্ভর করে, আপনি সম্ভবত পাঠ্য পরিবর্তন বা ফোকাস / প্রশ্নে টেক্সটবক্স ফোকাস / ফোকাস উপর যে ফন্ট অ্যাসাইনমেন্ট ব্যবহার করতে চান।
এটি দেখতে কেমন দেখতে তার একটি দ্রুত নমুনা রয়েছে (খালি ফর্ম, কেবল একটি পাঠ্যবাক্স সহ। পাঠ্যটি 'সাহসী' পড়লে ফন্টটি গাsens় হয়ে যায়, কেস-সংবেদনশীল):
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)
{
if (_tboTest.Text.Equals("Bold", StringComparison.OrdinalIgnoreCase))
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Bold);
}
else
{
_tboTest.Font = new Font(_tboTest.Font, FontStyle.Regular);
}
}
}