I was wondering if there is a way (any components/controls) that allow me to draw a simple Microsoft Word style table in my application window. Something like this:

Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on how you want to use it. Either use one of the
ItemsControl(likeDataGrid,ListViewetc), do it directly with aGridpanel (as recommended by the other answers) or use aFlowDocumentFlowDocumentallows you to specify Tables, Rows and Columns. You can also select several cells at once for Copy/Paste etc.This page is full of usefull examples about this: FlowDocument with Table