コード例 #1
0
 private void commentsButton_Click(object sender, System.EventArgs e)
 {
     ViewCommentsForm viewCommentsForm = new ViewCommentsForm(log);
     viewCommentsForm.Visible = true;
 }
コード例 #2
0
        private void commentsButton_Click(object sender, System.EventArgs e)
        {
            var viewCommentsForm = new ViewCommentsForm(log);

            viewCommentsForm.Visible = true;
        }
コード例 #3
0
 private void viewCommentsMenuItem_Click(object sender, System.EventArgs e)
 {
     if (clrProfiler.log != null && clrProfiler.log.commentEventList.count != 0)
     {
         ViewCommentsForm viewCommentsForm = new ViewCommentsForm(clrProfiler.log);
         viewCommentsForm.Visible = true;
     }
 }