Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
    }
share|improve this question
Try out removing <TextBox VerticalAlignment="Center" Grid.Column="0">Gangnam</TextBox> – sll Jan 10 at 14:58
no effect ... btw, I just checked what the exception was and it says: "Two-way binding requires Path or XPath." – user1896048 Jan 10 at 15:01
What's the error? Show how your are setting the datacontext. – Big Daddy Jan 10 at 15:02

1 Answer

up vote 0 down vote accepted

Because the DataContext is of type LeftColumnData and a TextBox uses Two-Way binding by default, it is impossible for the runtime to figure out the conversion between String and your datatype.

You can either try setting the binding to OneWay:

<TextBox VerticalAlignment="Center" Text="{Binding, Mode=OneWay}" Grid.Column="1" />

or implement an IValueConverter to handle the conversion:

<TextBox VerticalAlignment="Center" Text="{Binding, Converter={My:Converter}}" Grid.Column="1" />
share|improve this answer
That did it! Thanks for the info – user1896048 Jan 10 at 15:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.