I have an UltraFontNameEditor on a form and I'm trying to change the font on an UltraLabel to the selected font in the editor when the value is changed.
I've tried this:
private void fpFontPicker_ValueChanged(object sender, EventArgs e){ ultraLabel1.Appearance.FontData.Name = fpFontPicker.Value.ToString();}
Nothing happens. Changing FontData.SizeInPoints does actually cause the label's text to change size. Is there a setting somewhere that I've missed?
My guess is that something else is overriding the property setting, like maybe you are loading a style library into your application.
That was it. Thanks!