Esempio n. 1
0
        private void PromptForWorkitem()
        {
            var form = new CheckInForm(this);

            form.SetComment(PendingCheckin.PendingChanges.Comment);

            if (form.ShowDialog() == DialogResult.OK)
            {
                PendingCheckin.PendingChanges.Comment = form.GetComment();
            }
        }
Esempio n. 2
0
        private void PromptForWorkitem()
        {
            var form = new CheckInForm(this);
            form.SetComment(PendingCheckin.PendingChanges.Comment);

            if(form.ShowDialog() == DialogResult.OK) {
                PendingCheckin.PendingChanges.Comment = form.GetComment();
            }
        }