Exemplo 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();
            }
        }
Exemplo 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();
            }
        }