forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterialDataGridComboBoxColumn.cs
More file actions
104 lines (85 loc) · 3.38 KB
/
Copy pathMaterialDataGridComboBoxColumn.cs
File metadata and controls
104 lines (85 loc) · 3.38 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
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
namespace MaterialDesignThemes.Wpf
{
public class MaterialDataGridComboBoxColumn : DataGridComboBoxColumn //DataGridBoundColumn
{
static MaterialDataGridComboBoxColumn()
{
ElementStyleProperty.OverrideMetadata(typeof(MaterialDataGridComboBoxColumn), new FrameworkPropertyMetadata(DefaultElementStyle));
EditingElementStyleProperty.OverrideMetadata(typeof(MaterialDataGridComboBoxColumn), new FrameworkPropertyMetadata(DefaultEditingElementStyle));
}
public Binding ItemsSourceBinding { 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 (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;
}
/*
/// <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);
}
}
*/
}
}