Hi All,
I am creating a dynamic GroupBox through C# and want to change only the header font and not all the fonts in that.
GroupBox myGroupBox = new GroupBox();
myGroupBox.Header = mychk.Content.ToString();
myGroupBox.Content = myStack;
Here, myGroupBox.FontWeight changes all the contents inside the myGroupBox but how to change only the header font of this myGroupBox ?