diff --git a/Examples/DefaultsExample/Data.cs b/Examples/DefaultsExample/Data.cs index 73f1fd30..cc44428d 100644 --- a/Examples/DefaultsExample/Data.cs +++ b/Examples/DefaultsExample/Data.cs @@ -19,6 +19,7 @@ public Data() { this.Collection1 = new ObservableCollection(); this.Collection2 = new ObservableCollection(); + this.Collection3 = new ObservableCollection(); this.CustomCollection1 = new ObservableCollection(); this.CustomCollection2 = new ObservableCollection(); @@ -51,6 +52,7 @@ public Data() public ObservableCollection Collection1 { get; private set; } public ObservableCollection Collection2 { get; private set; } + public ObservableCollection Collection3 { get; private set; } public ObservableCollection CustomCollection1 { get; private set; } public ObservableCollection CustomCollection2 { get; private set; } public ObservableCollection GroupedCollection { get; private set; } diff --git a/Examples/DefaultsExample/Window(NET4).xaml b/Examples/DefaultsExample/Window(NET4).xaml index 8166d9dd..ed1a3d7d 100644 --- a/Examples/DefaultsExample/Window(NET4).xaml +++ b/Examples/DefaultsExample/Window(NET4).xaml @@ -746,5 +746,71 @@ dd:DragDrop.IsDropTarget="True" /> + + + + + + + + + + + + + + Example for PR #73: Crash on click inside ItemsControl where ItemsSource.Count == 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +