[NUI] Introduce CollectionView and related classes. (#2525)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / RecyclerView / ItemSizingStrategy.cs
1 /* Copyright (c) 2021 Samsung Electronics Co., Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  *
15  */
16
17 using System.ComponentModel;
18
19 namespace Tizen.NUI.Components
20 {
21     /// <summary>
22     /// Size calculation strategy for CollectionView.
23     /// </summary>
24     [EditorBrowsable(EditorBrowsableState.Never)]
25     public enum ItemSizingStrategy
26     {
27
28         /// <summary>
29         /// Measure all items in advanced.
30         /// Estimate first item size for all, and when scroll reached position,
31         /// measure strictly. Note : This will make scroll bar trembling.
32         /// </summary>
33         [EditorBrowsable(EditorBrowsableState.Never)]
34         MeasureAll,
35         /// <summary>
36         /// Measure first item and deligate size for all items.
37         /// if template is selector, the size of first item from each template will be deligated.
38         /// </summary>
39         [EditorBrowsable(EditorBrowsableState.Never)]
40         MeasureFirst,
41     }
42 }