コード例 #1
0
        /// <summary>
        /// Confirms the selected conditions.
        /// </summary>
        private void Confirm()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.AcknowledgeableConditionType_Confirm, comment);
        }
コード例 #2
0
        /// <summary>
        /// Adds a comment to the selected conditions.
        /// </summary>
        private void AddComment()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.ConditionType_AddComment, comment);
        }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: yuriik83/UA-.NET
        /// <summary>
        /// Confirms the selected conditions.
        /// </summary>
        private void Confirm()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.AcknowledgeableConditionType_Confirm, comment);
        }
コード例 #4
0
ファイル: MainForm.cs プロジェクト: yuriik83/UA-.NET
        /// <summary>
        /// Adds a comment to the selected conditions.
        /// </summary>
        private void AddComment()
        {
            string comment = new AddCommentDlg().ShowDialog(String.Empty);

            if (comment == null)
            {
                return;
            }

            CallMethod(MethodIds.ConditionType_AddComment, comment);
        }