BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
// occurs when focus of the child window changes
this.SyncDockingManager.ActiveWindowChanging += SyncDockingManager_ActiveWindowChanging;
private void SyncDockingManager_ActiveWindowChanging(FrameworkElement sender, Syncfusion.Windows.Tools.Controls.ActiveWindowChangingEventArgs e)
{
//Do the actions
if((e.NewValue as ContentControl).Name == "Output")
{
// handles the focus changing to the Output window
e.Cancel = true;
}
} |