Ejemplo n.º 1
0
        /// <summary>
        /// User clicked on the edit remote repos, open that dialog.
        /// </summary>
        private void BtEditClick(object sender, System.EventArgs e)
        {
            FormRemoteEdit remoteEdit = new FormRemoteEdit(currentRepo);

            if (remoteEdit.ShowDialog() == DialogResult.OK)
            {
                App.DoRefresh();
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// User clicked on the edit remote repos, open that dialog.
 /// </summary>
 private void BtEditClick(object sender, System.EventArgs e)
 {
     FormRemoteEdit remoteEdit = new FormRemoteEdit(currentRepo);
     if (remoteEdit.ShowDialog() == DialogResult.OK)
         App.DoRefresh();
 }