From 22c4f87594b67f3c4429a63cedca42d239346ca4 Mon Sep 17 00:00:00 2001 From: Seungkeun Lee Date: Tue, 27 Dec 2016 09:50:52 +0900 Subject: [PATCH] Apply initial value of Cell.IsEnabled - Cell.IsEnabled was false when listview was created, this value was not applied to listview Change-Id: I1ddc23c440189c5bcca762194b9c91c80bc1c8a6 --- Xamarin.Forms.Platform.Tizen/Native/ListView.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs index e932a28..f5047b3 100644 --- a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs @@ -501,6 +501,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native } groupItemContext.Item.SelectionMode = GenListSelectionMode.None; + groupItemContext.Item.IsEnabled = groupCell.IsEnabled; groupItemContext.IsGroupItem = true; groupItemContext.ListOfSubItems = groupList; @@ -543,6 +544,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native } itemContext.Item.SelectionMode = GenListSelectionMode.Always; + itemContext.Item.IsEnabled = cell.IsEnabled; cell.PropertyChanged += OnCellPropertyChanged; (cell as ICellController).ForceUpdateSizeRequested += OnForceUpdateSizeRequested; -- 2.7.4