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.Mac/Controls/BasePathEditorControl.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs15
1 files changed, 8 insertions, 7 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs
index 142e9dd..dde6136 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs
@@ -93,13 +93,6 @@ namespace Xamarin.PropertyEditing.Mac
{
this.panel.BeginSheet (this.Window, HandleAction);
}
-
- public override void ViewDidChangeEffectiveAppearance ()
- {
- this.revealPathButton.Image = HostResources.GetNamedImage (PathRevealName);
- this.browsePathButton.Image = HostResources.GetNamedImage (PathBrowseName);
- base.ViewDidChangeEffectiveAppearance ();
- }
protected abstract void OnRevealPathButtonActivated (object sender, EventArgs e);
protected abstract void StoreCurrentValue ();
@@ -128,6 +121,14 @@ namespace Xamarin.PropertyEditing.Mac
this.browsePathButton.Activated -= BrowsePathButton_Activated;
this.revealPathButton.Activated -= OnRevealPathButtonActivated;
base.Dispose (disposing);
+ }
+
+ protected override void AppearanceChanged ()
+ {
+ base.AppearanceChanged ();
+
+ this.revealPathButton.Image = HostResources.GetNamedImage (PathRevealName);
+ this.browsePathButton.Image = HostResources.GetNamedImage (PathBrowseName);
}
}
}