BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi Issam,
Thanks for using Syncfusion product.
We are analyzing on your requirement .We will update you with the details in one business day (August 18).We appreciate your patience until then.
Please let us know if you have any concerns.
Regards
Vigneshkumar R
Hi Issam,
Thanks for your patience.
We have analyzed on your requirement of rendering the user control much faster, if you give the content as control inside the button click it will take time to load in the beginning. In order to overcome this delay, load the control when main window loaded and make the control visibility as hidden. In button click by making the control visibility as visible we can render the control faster. We have modified the same sample to achieve your requirement. Please find the sample in the below link.
Sample Link: TestFluidUI
Notes:
In the above sample we have used below code snippet to load the control and making it visibility as hidden.
public MainWindow() { InitializeComponent(); Loaded += MainWindow_Loaded; }
void MainWindow_Loaded(object sender, RoutedEventArgs e) { cc.Content = view3; view3.Visibility = Visibility.Hidden; } |
We have used below code snippet to making control visibility as visible when clicking the button.
if (cc.Content != view3) { cc.Content = view3; } view3.Visibility = Visibility.Visible; |
Please let us know if you have any concerns
Regards
Vigneshkumar R
Hi Issam
Thanks for the
update. Please let us know if you require further assistance on this.
Regards
Vigneshkumar R