示例#1
0
        private void PromptToChooseLaterSync(out bool letUserChoosePhone, out bool ignoreNewerSyncs)
        {
            LaterSyncWarning laterSyncWarningWindow = new LaterSyncWarning();

            laterSyncWarningWindow.Owner = this;
            laterSyncWarningWindow.ShowDialog();

            letUserChoosePhone = (laterSyncWarningWindow.DialogResult == true);
            ignoreNewerSyncs   = laterSyncWarningWindow.IgnoreMoreRecentSyncs;
        }
示例#2
0
        private void PromptToChooseLaterSync(out bool letUserChoosePhone, out bool ignoreNewerSyncs)
        {
            LaterSyncWarning laterSyncWarningWindow = new LaterSyncWarning();
            laterSyncWarningWindow.Owner = this;
            laterSyncWarningWindow.ShowDialog();

            letUserChoosePhone = (laterSyncWarningWindow.DialogResult == true);
            ignoreNewerSyncs = laterSyncWarningWindow.IgnoreMoreRecentSyncs;
        }