summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/MenuItem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/MenuItem.cs')
-rw-r--r--Xamarin.Forms.Core/MenuItem.cs15
1 files changed, 5 insertions, 10 deletions
diff --git a/Xamarin.Forms.Core/MenuItem.cs b/Xamarin.Forms.Core/MenuItem.cs
index 84ad0327..329acab3 100644
--- a/Xamarin.Forms.Core/MenuItem.cs
+++ b/Xamarin.Forms.Core/MenuItem.cs
@@ -1,4 +1,5 @@
using System;
+using System.ComponentModel;
using System.Windows.Input;
namespace Xamarin.Forms
@@ -17,7 +18,8 @@ namespace Xamarin.Forms
public static readonly BindableProperty IconProperty = BindableProperty.Create("Icon", typeof(FileImageSource), typeof(MenuItem), default(FileImageSource));
- internal static readonly BindableProperty IsEnabledProperty = BindableProperty.Create("IsEnabled", typeof(bool), typeof(ToolbarItem), true);
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public static readonly BindableProperty IsEnabledProperty = BindableProperty.Create("IsEnabled", typeof(bool), typeof(ToolbarItem), true);
string IMenuItemController.IsEnabledPropertyName
{
@@ -57,20 +59,13 @@ namespace Xamarin.Forms
set { SetValue(TextProperty, value); }
}
- internal bool IsEnabled
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ public bool IsEnabled
{
get { return (bool)GetValue(IsEnabledProperty); }
set { SetValue(IsEnabledProperty, value); }
}
- bool IMenuItemController.IsEnabled
- {
- get
- {
- return IsEnabled;
- }
- }
-
bool IsEnabledCore
{
set { SetValueCore(IsEnabledProperty, value); }