tags:

views:

33

answers:

2

I have an app that has a list of items. My customer prefers to edit the list in normal text.

So I want to find a way to transform the list items into text and vice-versa. What would you suggest?

edit: The items can be something like:

  • John Doe, manager
  • Jane Doe, manager
  • Janine Doe, sales

But the customer wants to transform this list in pure text so he could for instance copy all and paste it to look like this:

  • John Doe, manager
  • Jane Doe, manager
  • Janine Doe, sales
  • John Doe, manager
  • Jane Doe, manager
  • Janine Doe, sales

This is an example, there are many scenarios.

Thank you

A: 

What is there inside your items? You would need to add a DataTemplate for your item type, binding the visual elements to the properties of your items.

Vlad
+1  A: 

Heavy weight solution - DataGrid from WPF Toolkit.

Light weight - your own ListBox with custom ItemTemplate.

Anvaka
+1 for the DataGrid mention
masenkablast