Revert "[NUI] replace field declaration with property (#1701)" (#1702)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / CheckBoxGroup.cs
index bf3a9bc..20f8678 100755 (executable)
@@ -84,7 +84,7 @@ namespace Tizen.NUI.Components
         [EditorBrowsable(EditorBrowsableState.Never)]
         public CheckBox GetItem(int index)
         {
-            return ItemGroup[index] as CheckBox;
+            return itemGroup[index] as CheckBox;
         }
 
         /// <summary>
@@ -97,9 +97,9 @@ namespace Tizen.NUI.Components
         public int[] GetCheckedIndices()
         {
             List<int> selectedItemsList = new List<int>();
-            for (int i = 0; i < ItemGroup.Count; i++)
+            for (int i = 0; i < itemGroup.Count; i++)
             {
-                if (ItemGroup[i].IsSelected)
+                if (itemGroup[i].IsSelected)
                 {
                     selectedItemsList.Add(i);
                 }
@@ -120,7 +120,7 @@ namespace Tizen.NUI.Components
         {
             List<CheckBox> selectedList = new List<CheckBox>();
 
-            foreach (CheckBox check in ItemGroup)
+            foreach (CheckBox check in itemGroup)
             {
                 if (check.IsSelected)
                 {
@@ -140,7 +140,7 @@ namespace Tizen.NUI.Components
         [EditorBrowsable(EditorBrowsableState.Never)]
         public bool IsCheckedAll()
         {
-            foreach (CheckBox cb in ItemGroup)
+            foreach (CheckBox cb in itemGroup)
             {
                 if (!cb.IsSelected)
                 {
@@ -159,7 +159,7 @@ namespace Tizen.NUI.Components
         [EditorBrowsable(EditorBrowsableState.Never)]
         public void CheckAll(bool state)
         {
-            foreach (CheckBox cb in ItemGroup)
+            foreach (CheckBox cb in itemGroup)
             {
                 cb.IsSelected = state;
             }