forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataGridComboBoxColumn.cs
More file actions
124 lines (102 loc) · 4.07 KB
/
Copy pathDataGridComboBoxColumn.cs
File metadata and controls
124 lines (102 loc) · 4.07 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
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
namespace MaterialDesignThemes.Wpf
{
public class DataGridComboBoxColumn : System.Windows.Controls.DataGridComboBoxColumn //DataGridBoundColumn
{
static DataGridComboBoxColumn()
{
ElementStyleProperty.OverrideMetadata(typeof(DataGridComboBoxColumn), new FrameworkPropertyMetadata(DefaultElementStyle));
EditingElementStyleProperty.OverrideMetadata(typeof(DataGridComboBoxColumn), new FrameworkPropertyMetadata(DefaultEditingElementStyle));
}
public Binding ItemsSourceBinding { get; set; }
public bool? IsEditable { get; set; }
protected override FrameworkElement GenerateElement(DataGridCell cell, object dataItem)
{
var comboBox = base.GenerateElement(cell, cell);
if (ItemsSourceBinding != null)
comboBox.SetBinding(ItemsControl.ItemsSourceProperty, ItemsSourceBinding);
ApplyStyle(false, false, comboBox);
return comboBox;
}
protected override FrameworkElement GenerateEditingElement(DataGridCell cell, object dataItem)
{
var comboBox = (ComboBox)base.GenerateElement(cell, cell);
if (IsEditable is bool isEditable)
{
comboBox.IsEditable = isEditable;
}
if (ItemsSourceBinding != null)
comboBox.SetBinding(ItemsControl.ItemsSourceProperty, ItemsSourceBinding);
ApplyStyle(true, false, comboBox);
return comboBox;
}
public static new Style DefaultElementStyle
{
get
{
var comboBox = new ComboBox();
var brushKey = new ComponentResourceKey(typeof(ComboBox), "MaterialDataGridComboBoxColumnStyle");
var style = (Style)comboBox.TryFindResource(brushKey);
return style;
}
}
public static new Style DefaultEditingElementStyle
{
get
{
var comboBox = new ComboBox();
var brushKey = new ComponentResourceKey(typeof(ComboBox), "MaterialDataGridComboBoxColumnEditingStyle");
var style = (Style)comboBox.TryFindResource(brushKey);
return style;
}
}
private void ApplyStyle(bool isEditing, bool defaultToElementStyle, FrameworkElement element)
{
var style = PickStyle(isEditing, defaultToElementStyle);
if (style != null)
{
element.Style = style;
}
}
private Style PickStyle(bool isEditing, bool defaultToElementStyle)
{
var style = isEditing ? EditingElementStyle : ElementStyle;
if (isEditing && defaultToElementStyle && (style == null))
{
style = ElementStyle;
}
return style;
}
protected override void CancelCellEdit(FrameworkElement editingElement, object uneditedValue)
{
if (editingElement is ComboBox comboBox)
comboBox.SetCurrentValue(ComboBox.IsDropDownOpenProperty, false);
base.CancelCellEdit(editingElement, uneditedValue);
}
protected override bool CommitCellEdit(FrameworkElement editingElement)
{
if (editingElement is ComboBox comboBox)
comboBox.SetCurrentValue(ComboBox.IsDropDownOpenProperty, false);
return base.CommitCellEdit(editingElement);
}
/*
/// <summary>
/// Assigns the Binding to the desired property on the target object.
/// </summary>
private void ApplyBinding(DependencyObject target, DependencyProperty property)
{
var binding = Binding;
if (binding != null)
{
BindingOperations.SetBinding(target, property, binding);
}
else
{
BindingOperations.ClearBinding(target, property);
}
}
*/
}
}