Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs')
-rw-r--r--Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs17
1 files changed, 9 insertions, 8 deletions
diff --git a/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs b/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
index 7ecd891..eec3c44 100644
--- a/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
+++ b/Xamarin.PropertyEditing.Windows/ObjectEditorControl.cs
@@ -16,24 +16,25 @@ namespace Xamarin.PropertyEditing.Windows
DataContextChanged += OnDataContextChanged;
}
+ private ObjectPropertyViewModel vm;
+
private void OnDataContextChanged (object sender, DependencyPropertyChangedEventArgs e)
{
- var vm = e.OldValue as ObjectPropertyViewModel;
- if (vm != null)
- vm.TypeRequested -= OnTypeRequested;
+ if (this.vm != null)
+ this.vm.TypeRequested -= OnTypeRequested;
- vm = e.NewValue as ObjectPropertyViewModel;
- if (vm != null)
- vm.TypeRequested += OnTypeRequested;
+ this.vm = e.NewValue as ObjectPropertyViewModel;
+ if (this.vm != null)
+ this.vm.TypeRequested += OnTypeRequested;
}
private void OnTypeRequested (object sender, TypeRequestedEventArgs e)
{
- var vm = (ObjectPropertyViewModel)sender;
+ var vsender = (ObjectPropertyViewModel)sender;
var panel = this.FindPropertiesHost ();
- ITypeInfo type = TypeSelectorWindow.RequestType (panel, vm.AssignableTypes);
+ ITypeInfo type = TypeSelectorWindow.RequestType (panel, vsender.AssignableTypes);
e.SelectedType = type;
}
}