Can anyone tell me why this doesn't work?
<Grid x:Name="myGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<TextBox VerticalAlignment="Center" Grid.Column="0">Gangnam</TextBox>
<TextBox VerticalAlignment="Center" Text="{Binding}" Grid.Column="1" />
</Grid>
In the code-behind I set a datacontext for myGrid. I'm also planning to make a datatemplate to handle the visualisation.
For now, I would expect the textbox to contain the typename of my class, but instead there is a xml parse exception ("Two-way binding requires Path or XPath.")
This is how I set the datacontext on the control:
public LeftColumn()
{
InitializeComponent();
LeftColumnData dataObjectLeft = new LeftColumnData();
myGrid.DataContext = dataObjectLeft;
}
<TextBox VerticalAlignment="Center" Grid.Column="0">Gangnam</TextBox>– sll Jan 10 at 14:58