-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBindableStackLayout.cs
More file actions
134 lines (110 loc) · 4.12 KB
/
BindableStackLayout.cs
File metadata and controls
134 lines (110 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
using System;
using System.Collections;
using System.Windows.Input;
using Xamarin.Forms;
namespace XFBindableStackLayout
{
public class BindableStackLayout : StackLayout
{
readonly Label header;
public BindableStackLayout()
{
header = new Label();
Children.Add(header);
ItemSelectedCommand = new Command<object>(item =>
{
SelectedItem = item;
});
}
public event EventHandler<SelectedItemChangedEventArgs> SelectedItemChanged;
public IEnumerable ItemsSource
{
get { return (IEnumerable)GetValue(ItemsSourceProperty); }
set { SetValue(ItemsSourceProperty, value); }
}
public static readonly BindableProperty ItemsSourceProperty = BindableProperty.Create(
nameof(ItemsSource),
typeof(IEnumerable),
typeof(BindableStackLayout),
propertyChanged: (bindable, oldValue, newValue) => ((BindableStackLayout)bindable).PopulateItems()
);
public DataTemplate ItemDataTemplate
{
get { return (DataTemplate)GetValue(ItemDataTemplateProperty); }
set { SetValue(ItemDataTemplateProperty, value); }
}
public static readonly BindableProperty ItemDataTemplateProperty = BindableProperty.Create(
nameof(ItemDataTemplate), typeof(DataTemplate), typeof(BindableStackLayout)
);
public string Title
{
get { return (string)GetValue(TitleProperty); }
set { SetValue(TitleProperty, value); }
}
public static readonly BindableProperty TitleProperty = BindableProperty.Create(
nameof(Title), typeof(string),
typeof(BindableStackLayout),
propertyChanged: (bindable, oldValue, newValue) => ((BindableStackLayout)bindable).PopulateHeader()
);
public object SelectedItem
{
get { return GetValue(SelectedItemProperty); }
set { SetValue(SelectedItemProperty, value); }
}
public static BindableProperty SelectedItemProperty = BindableProperty.Create(
propertyName: "SelectedItem",
returnType: typeof(object),
declaringType: typeof(BindableStackLayout),
defaultValue: null,
defaultBindingMode: BindingMode.OneWay,
propertyChanged: OnSelectedItemChanged
);
private static void OnSelectedItemChanged(BindableObject bindable, object oldValue, object newValue)
{
var itemsView = (BindableStackLayout)bindable;
if (newValue == oldValue)
return;
itemsView.SetSelectedItem(newValue);
}
protected virtual void SetSelectedItem(object selectedItem)
{
var handler = SelectedItemChanged;
if (handler != null)
handler(this, new SelectedItemChangedEventArgs(selectedItem));
}
void PopulateItems()
{
if (ItemsSource == null) return;
foreach (var item in ItemsSource)
{
Children.Add(GetItemView(item));
}
}
void PopulateHeader() => header.Text = Title;
protected virtual View GetItemView(object item)
{
var content = ItemDataTemplate.CreateContent();
var view = content as View;
if (view == null)
return null;
view.BindingContext = item;
var gesture = new TapGestureRecognizer
{
Command = ItemSelectedCommand,
CommandParameter = item
};
AddGesture(view, gesture);
return view;
}
protected readonly ICommand ItemSelectedCommand;
protected void AddGesture(View view, TapGestureRecognizer gesture)
{
view.GestureRecognizers.Add(gesture);
var layout = view as Layout<View>;
if (layout == null)
return;
foreach (var child in layout.Children)
AddGesture(child, gesture);
}
}
}