Hi,
Sometimes my RadPane headers are missing even though when I set breakpoints in the code I can see it being set. My views inherit from RadPane. Below is an example of it being set. I have included a picture of the header not showing. It seems strange because sometimes the header shows fine and sometimes it doesn't.
public partial class CustomerView : RadPane{ public CustomerView (string paneHeader, string serializationTag) { this.Header = paneHeader; RadDocking.SetSerializationTag(this, serializationTag); InitializeComponent(); }