Hi Team,
I am setting current User Name in both of these places
1) At Constructor of my User Control (after calling "Initialize Component")
myRichTextEditor.CurrentUser = "My Current Logged in User";
2) "myRichTextEditor_CommentShowing" event.
private void myRichTextEditor_CommentShowing(object sender, CommentShowingEventArgs e)
{
e.AppearanceSettings.BorderBrush = new SolidColorBrush(Colors.Green);
e.Comment.Author = "My Current Logged in User";
}
However the "Author" Name is not displayed in "Comment".
Could you please help me to solve this.
Thanks.
Obuliraj Ramalingam
I am setting current User Name in both of these places
1) At Constructor of my User Control (after calling "Initialize Component")
myRichTextEditor.CurrentUser = "My Current Logged in User";
2) "myRichTextEditor_CommentShowing" event.
private void myRichTextEditor_CommentShowing(object sender, CommentShowingEventArgs e)
{
e.AppearanceSettings.BorderBrush = new SolidColorBrush(Colors.Green);
e.Comment.Author = "My Current Logged in User";
}
However the "Author" Name is not displayed in "Comment".
Could you please help me to solve this.
Thanks.
Obuliraj Ramalingam