Using the MVVM-pattern you set the DataContext to a specific ViewModel. Now is there any way to tell the XAML the type of the DataContext so that it will validate my bindings?
Looking for something like the typed viewdata in ASP.NET MVC.
|
feedback
|
|
No, the current spec does not have strong typing in Xaml. I believe that with .Net 4.0, Xaml should be seeing the capacity for generics. With that, I would think it should be much easier to have strong typing in Xaml. | |||
|
feedback
|
|
You can write each individual binding in a strongly-typed way:
However this would not validate the fact that TextBox DataContext is of type ViewModel.Site (and I think this is not possible, but I may be wrong). | |||
|
feedback
|
|
No. As pointed out by others, you can specify the expected type of a Bryan is correct, he did not test his code. The correct application of a typed DataTemplate looks like this:
ContentPresenter inherits directly from FrameworkElement and does not have a Template property. In addition, the Template property commonly refers to Control.Template of type ControlTemplate which is something entirely different than a DataTemplate. I think Bryan was thinking of the
| ||||
|
feedback
|
|
I personally declare a static PropertyPath for each property in my viewmodel the reference this using x:static as the binding path - e.g public class MyViewModel { public static PropertyPath MyPropertyPath = new PropertyPath("MyProperty"); public bool MyProperty{get; set;} } xaml : {Binding Path={x:Static local:MyViewModel.MyPropertyPath}} This way all my bindings get validated on build. | |||
|
feedback
|
|
Try this:
I haven't tested this code but it should give you the idea. The content presenter will display the current DataContext which will use the DataTemplate. This isn't strongly typed in the compiler but will throw a runtime error immediately on load (in the window's InitializeComponent). You should be able to catch this easily in your testing if something breaks. | |||||
feedback
|