Exemple #1
0
 /// <summary>
 /// Runs the Sync Troubleshooting wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Troubleshooting(bool machineWide, IWin32Window?owner = null)
 {
     using var wizard = new SyncWizard(machineWide, troubleshooting: true);
     wizard.ShowDialog(owner);
 }
Exemple #2
0
 /// <summary>
 /// Runs the Sync Setup wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Setup(bool machineWide, IWin32Window?owner = null)
 {
     using var wizard = new SyncWizard(machineWide);
     wizard.ShowDialog(owner);
 }
Exemple #3
0
 /// <summary>
 /// Runs the Sync Troubleshooting wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Troubleshooting(bool machineWide, [CanBeNull] IWin32Window owner = null)
 {
     using (var wizard = new SyncWizard(machineWide, troubleshooting: true))
         wizard.ShowDialog(owner);
 }
Exemple #4
0
 /// <summary>
 /// Runs the Sync Setup wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Setup(bool machineWide, [CanBeNull] IWin32Window owner = null)
 {
     using (var wizard = new SyncWizard(machineWide))
         wizard.ShowDialog(owner);
 }
Exemple #5
0
 /// <summary>
 /// Runs the Sync Troubleshooting wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Troubleshooting(bool machineWide, [CanBeNull] IWin32Window owner = null)
 {
     using (var wizard = new SyncWizard(machineWide, troubleshooting: true))
         wizard.ShowDialog(owner);
 }
Exemple #6
0
 /// <summary>
 /// Runs the Sync Setup wizard.
 /// </summary>
 /// <param name="machineWide">Configure Sync for machine-wide data instead of just for the current user.</param>
 /// <param name="owner">The parent window the displayed window is modal to; can be <c>null</c>.</param>
 public static void Setup(bool machineWide, [CanBeNull] IWin32Window owner = null)
 {
     using (var wizard = new SyncWizard(machineWide))
         wizard.ShowDialog(owner);
 }