I have a ListView
in which I need to add a fixed amount of items to in the XAML. (I don't need to dynamically add items to the list and I want to handle data binding from within the xaml as well.)
I understand how to add text as ListViewItems
simply with <ListViewItem content="blah"/>
What I want to do is something like:
<ListViewItem><TextBox/><Label/></ListViewItem>
where the TextBox is appointed to the first column in my listview and the label to the second.
Is this at all possible to do within the XAML only? No code-behind. Would it be doable with a datagrid?