The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team February 3, 2005 04:41 PM UTC
Hi Krijn,
Saving the bar customization is handled by LoadBarCustomization and SaveBarCustomization. However, those methods are protected so you''ll need to extend MainFrameBarManager to access them. The following code snippet demonstrates this:
public class CustomMainFrameBarManager : MainFrameBarManager
{
public CustomMainFrameBarManager () : base()
{
}
public CustomMainFrameBarManager(Form f): base(f)
{
}
public CustomMainFrameBarManager(IContainer c,Form f): base(c, f)
{
}
public void LoadBarCustomization (AppStateSerializer serializer)
{
base.LoadCustomizationInfo(serializer);
}
public void SaveBarCustomization(AppStateSerializer serializer)
{
base.SaveCustomizationInfo(serializer);
}
}
Regards,
Gregory Austin
Syncfusion, Inc.