Yeah I am looking for some C# code of a multi-column TreeView where each cell can be inline-edited and also dragging the rows is supported.
Do you have any good examples of such a custom component?
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.
You can check out the TreeListView example, that gives you a good intro into the GridViewRowPresenter that can be used in this scenario.
http://msdn.microsoft.com/en-us/library/ms771523.aspx
This gives you multi-column and editing can easily be done with databindings in the template.
For D&D you have to look somewhere else. But probably this blog entry of Bea Costa you can adapt to you’re needs http://bea.stollnitz.com/blog/?p=53.
hth,
Martin