diff options
author | rina6350.you <rina6350.you@samsung.com> | 2017-04-19 13:57:50 +0900 |
---|---|---|
committer | Kangho Hur <kangho.hur@samsung.com> | 2017-07-10 11:11:23 +0900 |
commit | 4e8a17c819bf091bcafe0853aa27be1b8f432f6c (patch) | |
tree | e65e2ab400bc6e8aecdd96e0c7e18e8761a53d19 | |
parent | c5dbe6845d6b73e489d46c1c891109723129062f (diff) | |
download | xamarin-forms-4e8a17c819bf091bcafe0853aa27be1b8f432f6c.tar.gz xamarin-forms-4e8a17c819bf091bcafe0853aa27be1b8f432f6c.tar.bz2 xamarin-forms-4e8a17c819bf091bcafe0853aa27be1b8f432f6c.zip |
Change the style of GenList for ImageCell and SwitchCell
Change-Id: I3d6c8e940bd8814d2ba2ef45536142696d861611
-rwxr-xr-x[-rw-r--r--] | Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | Xamarin.Forms.Platform.Tizen/Cells/SwitchCellRenderer.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs index 2bf64b4c..e810cc8e 100644..100755 --- a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs +++ b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs @@ -8,7 +8,7 @@ namespace Xamarin.Forms.Platform.Tizen const int _defaultHeight = 55; Dictionary<EvasObject, Native.Image> _realizedViews = new Dictionary<EvasObject, Native.Image>(); - public ImageCellRenderer() : this("type1") + public ImageCellRenderer() : this("default") { ImagePart = "elm.swallow.icon"; } diff --git a/Xamarin.Forms.Platform.Tizen/Cells/SwitchCellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/SwitchCellRenderer.cs index a6764781..7684f528 100644..100755 --- a/Xamarin.Forms.Platform.Tizen/Cells/SwitchCellRenderer.cs +++ b/Xamarin.Forms.Platform.Tizen/Cells/SwitchCellRenderer.cs @@ -11,7 +11,7 @@ namespace Xamarin.Forms.Platform.Tizen { } - public SwitchCellRenderer() : this("end_icon") + public SwitchCellRenderer() : this("default") { MainPart = "elm.text"; SwitchPart = "elm.swallow.end"; |