Remove unnecessaray parameter of TizenDeviceInfo
[platform/upstream/xamarin-forms.git] / Xamarin.Forms.Pages / ListItemControl.cs
1 namespace Xamarin.Forms.Pages
2 {
3         public class ListItemControl : DataView
4         {
5                 public static readonly BindableProperty TitleProperty = BindableProperty.Create(nameof(Title), typeof(string), typeof(ListItemControl), default(string));
6
7                 public static readonly BindableProperty DetailProperty = BindableProperty.Create(nameof(Detail), typeof(string), typeof(ListItemControl), default(string));
8
9                 public static readonly BindableProperty ImageSourceProperty = BindableProperty.Create(nameof(ImageSource), typeof(ImageSource), typeof(ListItemControl), default(ImageSource));
10
11                 public static readonly BindableProperty PlaceHolderImageSourceProperty = BindableProperty.Create(nameof(PlaceholderImageSource), typeof(ImageSource), typeof(ListItemControl), default(ImageSource));
12
13                 public static readonly BindableProperty AspectProperty = BindableProperty.Create(nameof(Aspect), typeof(Aspect), typeof(ListItemControl), default(Aspect));
14
15                 public Aspect Aspect
16                 {
17                         get { return (Aspect)GetValue(AspectProperty); }
18                         set { SetValue(AspectProperty, value); }
19                 }
20
21                 public string Detail
22                 {
23                         get { return (string)GetValue(DetailProperty); }
24                         set { SetValue(DetailProperty, value); }
25                 }
26
27                 public ImageSource ImageSource
28                 {
29                         get { return (ImageSource)GetValue(ImageSourceProperty); }
30                         set { SetValue(ImageSourceProperty, value); }
31                 }
32
33                 public ImageSource PlaceholderImageSource
34                 {
35                         get { return (ImageSource)GetValue(PlaceHolderImageSourceProperty); }
36                         set { SetValue(PlaceHolderImageSourceProperty, value); }
37                 }
38
39                 public string Title
40                 {
41                         get { return (string)GetValue(TitleProperty); }
42                         set { SetValue(TitleProperty, value); }
43                 }
44         }
45 }