List replies in a winform

Posted by andrew on Stack Overflow See other posts from Stack Overflow or by andrew
Published on 2010-05-19T14:33:15Z Indexed on 2010/05/19 17:00 UTC
Read the original article Hit count: 241

Filed under:
|
|
|

In my C# app I get an xml from a server that contains some replies like in a forum thread (with elements like author, time, body, title, whatever).

When I get this xml, I create a new form in which i want to display these replies, and a little text box with an "add reply" button. I'd also like some edit buttons on perhaps my own replies in the reply list displayed in the form.

The simplest way that came to my mind to display the replies is to put a web browser control in the form, generate a full html page in a string from the xml, and throw it in that web browser control. And under it i can put the text box with the add reply button. Everything is ok, except that i have no idea of how i could implement the edit function on my own replies (i mean i could add a link in there... but link to what)

I would like to know if there is a way to get that edit event from the web browser control (my guess is i can't) or another (maybe simple/easy) idea of displaying the replies in a winform using other controls

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms