KeepSync.StringChooserDialog.ShowDialog C# (CSharp) Method

ShowDialog() public method

public ShowDialog ( ) : DialogResult
return DialogResult
        public new DialogResult ShowDialog()
        {
            return base.ShowDialog();
        }

Usage Example

Esempio n. 1
0
        private void lbl_remote_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            StringChooserDialog dlg = new StringChooserDialog();

            dlg.history = _remoteHistory.Distinct();
            if (dlg.ShowDialog() == DialogResult.OK)
            {
                lbl_remoteSite.Text = _remoteFolder = dlg.result;
                _remoteHistory.Add(_remoteFolder);
            }
        }
All Usage Examples Of KeepSync.StringChooserDialog::ShowDialog