I have a TabControl in place and would like to have the selectedt tab to have bold text and the other tabs to be grayed out or not be so prevalent. I was trying something like this:
Code:
private void tabControl1_Selected(object sender, TabControlEventArgs e)
{
if (this.tabControl1.SelectedTab = tab1)
{
tabControl1.Font.Bold = true;
}