summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-02-14 20:11:48 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:19 +0900
commit0ec3d9c9a447c7fa34928603689f792de22fdb22 (patch)
treef0d353a91f7193287717bca10f672b1e77fe4f39 /Xamarin.Forms.Core
parentc9e92af8af88e6b727f36cc9228cbed7ea488f44 (diff)
downloadxamarin-forms-0ec3d9c9a447c7fa34928603689f792de22fdb22.tar.gz
xamarin-forms-0ec3d9c9a447c7fa34928603689f792de22fdb22.tar.bz2
xamarin-forms-0ec3d9c9a447c7fa34928603689f792de22fdb22.zip
Remove unused TizenSpecific/Button.cs file
Change-Id: I72800c7f2ad2353d0c9b5a23ced07253531ddfbb
Diffstat (limited to 'Xamarin.Forms.Core')
-rw-r--r--Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Button.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Button.cs b/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Button.cs
deleted file mode 100644
index e74650fc..00000000
--- a/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/Button.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
-{
- using FormsElement = Forms.Button;
-
- public static class Button
- {
- public static readonly BindableProperty ButtonStyleProperty = BindableProperty.Create("ButtonStyle", typeof(ButtonStyle), typeof(FormsElement), ButtonStyle.Default);
-
- public static ButtonStyle GetButtonStyle(BindableObject element)
- {
- return (ButtonStyle)element.GetValue(ButtonStyleProperty);
- }
-
- public static void SetButtonStyle(BindableObject element, ButtonStyle value)
- {
- element.SetValue(ButtonStyleProperty, value);
- }
-
- public static ButtonStyle GetButtonStyle(this IPlatformElementConfiguration<Tizen, FormsElement> config)
- {
- return GetButtonStyle(config.Element);
- }
-
- public static IPlatformElementConfiguration<Tizen, FormsElement> SetButtonStyle(this IPlatformElementConfiguration<Tizen, FormsElement> config, ButtonStyle value)
- {
- SetButtonStyle(config.Element, value);
- return config;
- }
- }
-}