Exemple #1
0
        /// <summary>
        /// Create a new branch using a dialog to select the branch
        /// </summary>
        private static void MenuNewBranchClick(object sender, EventArgs e)
        {
            FormNewBranch newBranch = new FormNewBranch();

            if (newBranch.ShowDialog() == DialogResult.OK)
            {
                App.DoRefresh();
            }
        }
Exemple #2
0
 /// <summary>
 /// Create a new branch using a dialog to select the branch
 /// </summary>
 private static void MenuNewBranchClick(object sender, EventArgs e)
 {
     FormNewBranch newBranch = new FormNewBranch();
     if (newBranch.ShowDialog() == DialogResult.OK)
         App.DoRefresh();
 }