BEurtle.IssueDetail.CommentBodyView_Selected C# (CSharp) 메소드

CommentBodyView_Selected() 개인적인 메소드

private CommentBodyView_Selected ( object sender, System.Windows.Forms.TabControlEventArgs e ) : void
sender object
e System.Windows.Forms.TabControlEventArgs
리턴 void
        private void CommentBodyView_Selected(object sender, TabControlEventArgs e)
        {
            if (e.TabPage == CommentBodyViewRaw)
            {
                CommentBodyRaw.Text = CommentBody.Document.Body.InnerHtml;
            }
            else if(e.TabPage!=CommentBodyViewFile)
            {
                CommentBody.Document.Body.InnerHtml = CommentBodyRaw.Text;
            }
        }