I have a ViewModel that uses DependencyProperties (or INotifyPropertyChanged) that has a property of a very simple composite type like System.Windows.Point. The simple composite type doesn't use DependencyProperties or INotifyPropertyChanged, and it's intended to stay that way (it's out of my control).
What I want to do now is to create two-way data binding to the X and Y properties of the Point, but when one of these are changed, I want the entire Point class to be replaced, rather than updating just the member.
Code sample just for illustration:
<Window ...>
<StackPanel>
<TextBox Text="{Binding TestPoint.X, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:MainWindow}}, StringFormat=\{0:F\}}"/>
<TextBox Text="{Binding TestPoint.Y, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:MainWindow}}, StringFormat=\{0:F\}}"/>
<!-- make following label update based on textbox changes above -->
<Label Content="{Binding TestPoint, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:MainWindow}}}"/>
</StackPanel>
</Window>
Code-behind:
public partial class MainWindow : Window
{
public Point TestPoint
{
get { return (Point)GetValue(TestPointProperty); }
set { SetValue(TestPointProperty, value); }
}
public static readonly DependencyProperty TestPointProperty = DependencyProperty.Register("TestPoint", typeof(Point), typeof(MainWindow), new PropertyMetadata(new Point(1.0, 1.0)));
}
What I was thinking was to bind both TextBoxes directly to TestPoint property and use IValueConverter to filter out only the specific member, but then there's a problem in ConvertBack method, because the Y value is not there anymore when modifying X value.
I feel there must be a really simple solution to this that I'm not getting.
Edit:
The code above is just a simplified example, the actual application is more complex than that. The composite type has about 7 members and is commonly used throught the application, so splitting it to individual members doesn't feel right. Also I want to rely on OnChanged event of the dependency property to invoke other updates, so I really need to replace the entire class.
Why don't you use accessors ?
And in your XAML :