-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathRadioButtonsFormInputView.Windows.cs
More file actions
164 lines (151 loc) · 5.08 KB
/
RadioButtonsFormInputView.Windows.cs
File metadata and controls
164 lines (151 loc) · 5.08 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// /*******************************************************************************
// * Copyright 2012-2018 Esri
// *
// * Licensed under the Apache License, Version 2.0 (the "License");
// * you may not use this file except in compliance with the License.
// * You may obtain a copy of the License at
// *
// * http://www.apache.org/licenses/LICENSE-2.0
// *
// * Unless required by applicable law or agreed to in writing, software
// * distributed under the License is distributed on an "AS IS" BASIS,
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// * See the License for the specific language governing permissions and
// * limitations under the License.
// ******************************************************************************/
#if WPF || WINDOWS_XAML
using Esri.ArcGISRuntime.Data;
using Esri.ArcGISRuntime.Mapping.FeatureForms;
using Esri.ArcGISRuntime.Toolkit.Internal;
using System.ComponentModel;
#if WPF
using System.Windows.Controls.Primitives;
#endif
namespace Esri.ArcGISRuntime.Toolkit.Primitives
{
[TemplatePart(Name ="Selector", Type = typeof(Selector))]
public partial class RadioButtonsFormInputView :
#if WPF
Selector
#else
ItemsControl
#endif
{
/// <inheritdoc />
#if WPF
public override void OnApplyTemplate()
#else
protected override void OnApplyTemplate()
#endif
{
base.OnApplyTemplate();
UpdateItems();
}
private partial class RadioButtonItem : RadioButton
{
#if WINDOWS_XAML
public RadioButtonItem()
{
this.Checked += (s,e) => ParentSelector?.RaiseCheckedEvent(this, true);
}
#else
protected override void OnChecked(RoutedEventArgs e)
{
base.OnChecked(e);
ParentSelector?.RaiseCheckedEvent(this, true);
}
#endif
protected override void OnGotFocus(RoutedEventArgs e)
=> UI.Controls.FeatureFormView.GetParent<FieldFormElementView>(this)?.OnGotFocus();
internal RadioButtonsFormInputView? ParentSelector => ItemsControl.ItemsControlFromItemContainer(this) as RadioButtonsFormInputView;
}
private void RaiseCheckedEvent(RadioButtonItem button, bool isChecked)
{
if (isChecked)
{
var selection = (button.DataContext as CodedValue)?.Code;
Element?.UpdateValue(selection);
}
}
/// <inheritdoc />
protected override DependencyObject GetContainerForItemOverride()
{
return new RadioButtonItem() { GroupName = Element?.FieldName + "_" + _formid };
}
/// <inheritdoc />
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
{
if (element is RadioButtonItem radio)
{
bool isChecked = false;
if(item is CodedValue cv)
{
if (object.Equals(cv.Code, Element?.Value))
isChecked = true;
#if WPF
System.Windows.Automation.AutomationProperties.SetName(radio, cv.Name);
#endif
}
else if(item is RadioButtonNullValue && Element?.Value is null)
{
isChecked = true;
}
radio.IsChecked = isChecked;
#if WINDOWS_XAML
radio.ContentTemplate = ItemTemplate;
#endif
}
#if WPF
base.PrepareContainerForItemOverride(element, item);
#endif
}
private static IEnumerable<RadioButtonItem> GetItemContainers(DependencyObject depObj)
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
var child = VisualTreeHelper.GetChild(depObj, i);
if (child is RadioButtonItem b)
yield return b;
else foreach (var cb in GetItemContainers(child))
yield return cb;
}
}
}
/// <inheritdoc />
#if WINDOWS_XAML
private void OnSelectionChanged()
{
#else
protected override void OnSelectionChanged(SelectionChangedEventArgs e)
{
base.OnSelectionChanged(e);
#endif
if (Element is null) return;
var value = (SelectedItem as CodedValue);
foreach(var item in GetItemContainers(this))
{
item.IsChecked = (item.DataContext == SelectedItem);
}
}
#if WINDOWS_XAML
private object? _selectedItem;
/// <summary>
/// Gets or sets the currently selected item
/// </summary>
private object? SelectedItem
{
get => _selectedItem;
set
{
if (_selectedItem != value)
{
_selectedItem = value; OnSelectionChanged();
}
}
}
#endif
}
}
#endif