Skip to content

Instantly share code, notes, and snippets.

@odugen
Created December 16, 2014 14:57
Show Gist options
  • Select an option

  • Save odugen/b0b2d11f346058c9e946 to your computer and use it in GitHub Desktop.

Select an option

Save odugen/b0b2d11f346058c9e946 to your computer and use it in GitHub Desktop.
ContentPresenter INotifyDataErrorInfo red border fix
<Window x:Class="TestWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="TestWindow" Height="300" Width="300">
<Window.Resources>
<DataTemplate DataType="{x:Type TestViewModel}">
<Grid>
<TestView />
</Grid>
</DataTemplate>
</Window.Resources>
<ContentPresenter Content="{Binding CurrentViewModel, ValidatesOnNotifyDataErrors=False}"/>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment