blob: 231896a3de7e26ec3256b16f1be08795ba6ed8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using ElmSharp;
using ElmSharp.Wearable;
namespace Xamarin.Forms.Platform.Tizen.Native
{
public class CircleListView : ListView
{
CircleGenList _circleGenList;
public CircleListView(EvasObject parent) : base(parent) { }
protected override IntPtr CreateHandle(EvasObject parent)
{
_circleGenList = new CircleGenList(parent);
RealHandle = _circleGenList.RealHandle;
return _circleGenList;
}
}
}
|