-
Notifications
You must be signed in to change notification settings - Fork 913
Expand file tree
/
Copy pathCheckComboBox.cs
More file actions
412 lines (340 loc) · 11.8 KB
/
Copy pathCheckComboBox.cs
File metadata and controls
412 lines (340 loc) · 11.8 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*************************************************************************************
Extended WPF Toolkit
Copyright (C) 2007-2013 Xceed Software Inc.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
For more features, controls, and fast professional support,
pick up the Plus Edition at http://xceed.com/wpf_toolkit
Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
***********************************************************************************/
using System;
using System.Linq;
using System.Windows;
using System.Windows.Input;
using System.Collections.Generic;
using System.Windows.Controls.Primitives;
using Xceed.Wpf.Toolkit.Core.Utilities;
namespace Xceed.Wpf.Toolkit
{
[TemplatePart( Name = PART_Popup, Type = typeof( Popup ) )]
[TemplatePart(Name = PART_FilterBox, Type = typeof(FilterBox))]
public class CheckComboBox : Xceed.Wpf.Toolkit.Primitives.Selector
{
private const string PART_Popup = "PART_Popup";
private const string PART_FilterBox = "PART_FilterBox";
#region Members
private readonly ValueChangeHelper _displayMemberPathValuesChangeHelper;
private bool _ignoreTextValueChanged;
private Popup _popup;
private FilterBox _filterBox;
private readonly List<object> _initialValue = new List<object>();
private bool _allowFilter;
#endregion
#region Constructors
static CheckComboBox()
{
DefaultStyleKeyProperty.OverrideMetadata( typeof( CheckComboBox ), new FrameworkPropertyMetadata( typeof( CheckComboBox ) ) );
}
public CheckComboBox()
{
Keyboard.AddKeyDownHandler( this, OnKeyDown );
Mouse.AddPreviewMouseDownOutsideCapturedElementHandler( this, OnMouseDownOutsideCapturedElement );
_displayMemberPathValuesChangeHelper = new ValueChangeHelper( this.OnDisplayMemberPathValuesChanged );
}
#endregion //Constructors
#region Properties
#region IsEditable
public static readonly DependencyProperty IsEditableProperty = DependencyProperty.Register( "IsEditable", typeof( bool ), typeof( CheckComboBox )
, new UIPropertyMetadata( false ) );
public bool IsEditable
{
get
{
return (bool)GetValue( IsEditableProperty );
}
set
{
SetValue( IsEditableProperty, value );
}
}
#endregion
#region Text
public static readonly DependencyProperty TextProperty = DependencyProperty.Register( "Text", typeof( string ), typeof( CheckComboBox )
, new UIPropertyMetadata( null, OnTextChanged ) );
public string Text
{
get
{
return ( string )GetValue( TextProperty );
}
set
{
SetValue( TextProperty, value );
}
}
private static void OnTextChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
var checkComboBox = o as CheckComboBox;
if( checkComboBox != null )
checkComboBox.OnTextChanged( (string)e.OldValue, (string)e.NewValue );
}
protected virtual void OnTextChanged( string oldValue, string newValue )
{
if( !this.IsInitialized || _ignoreTextValueChanged || !this.IsEditable )
return;
this.UpdateFromText();
}
#endregion
#region IsDropDownOpen
public static readonly DependencyProperty IsDropDownOpenProperty = DependencyProperty.Register( "IsDropDownOpen", typeof( bool ), typeof( CheckComboBox ), new UIPropertyMetadata( false, OnIsDropDownOpenChanged ) );
public bool IsDropDownOpen
{
get
{
return ( bool )GetValue( IsDropDownOpenProperty );
}
set
{
SetValue( IsDropDownOpenProperty, value );
}
}
private static void OnIsDropDownOpenChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
CheckComboBox comboBox = o as CheckComboBox;
if( comboBox != null )
comboBox.OnIsDropDownOpenChanged( ( bool )e.OldValue, ( bool )e.NewValue );
}
protected virtual void OnIsDropDownOpenChanged( bool oldValue, bool newValue )
{
if( newValue )
{
_initialValue.Clear();
foreach( object o in SelectedItems )
_initialValue.Add( o );
}
else
{
_initialValue.Clear();
}
// TODO: Add your property changed side-effects. Descendants can override as well.
}
#endregion //IsDropDownOpen
#region MaxDropDownHeight
public static readonly DependencyProperty MaxDropDownHeightProperty = DependencyProperty.Register( "MaxDropDownHeight", typeof( double ), typeof( CheckComboBox ), new UIPropertyMetadata( SystemParameters.PrimaryScreenHeight / 3.0, OnMaxDropDownHeightChanged ) );
public double MaxDropDownHeight
{
get
{
return ( double )GetValue( MaxDropDownHeightProperty );
}
set
{
SetValue( MaxDropDownHeightProperty, value );
}
}
private static void OnMaxDropDownHeightChanged( DependencyObject o, DependencyPropertyChangedEventArgs e )
{
CheckComboBox comboBox = o as CheckComboBox;
if( comboBox != null )
comboBox.OnMaxDropDownHeightChanged( ( double )e.OldValue, ( double )e.NewValue );
}
protected virtual void OnMaxDropDownHeightChanged( double oldValue, double newValue )
{
// TODO: Add your property changed side-effects. Descendants can override as well.
}
#endregion
#region AllowFilter
public static readonly DependencyProperty AllowFilterProperty = DependencyProperty.Register(
"AllowFilter",
typeof(bool),
typeof(CheckComboBox),
new UIPropertyMetadata(true, AllowFilterChanged));
private static void AllowFilterChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var selector = d as CheckComboBox;
if (selector != null)
selector.AllowFilterChanged((bool) e.NewValue);
}
protected void AllowFilterChanged(bool value)
{
_allowFilter = value;
if (_filterBox != null)
{
SetFilter(value);
}
}
public bool AllowFilter
{
get
{
return (bool)GetValue(AllowFilterProperty);
}
set
{
SetValue(AllowFilterProperty, value);
}
}
private void SetFilter(bool value)
{
_filterBox.Clear(false);
_filterBox.Visibility = value ? Visibility.Visible : Visibility.Collapsed;
}
#endregion //AllowFilter
#endregion //Properties
#region Base Class Overrides
protected override void OnSelectedValueChanged( string oldValue, string newValue )
{
base.OnSelectedValueChanged( oldValue, newValue );
UpdateText();
}
protected override void OnDisplayMemberPathChanged( string oldDisplayMemberPath, string newDisplayMemberPath )
{
base.OnDisplayMemberPathChanged( oldDisplayMemberPath, newDisplayMemberPath );
this.UpdateDisplayMemberPathValuesBindings();
}
protected override void OnItemsSourceChanged( System.Collections.IEnumerable oldValue, System.Collections.IEnumerable newValue )
{
base.OnItemsSourceChanged( oldValue, newValue );
this.UpdateDisplayMemberPathValuesBindings();
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
if( _popup != null )
_popup.Opened -= Popup_Opened;
_popup = GetTemplateChild( PART_Popup ) as Popup;
if( _popup != null )
_popup.Opened += Popup_Opened;
_filterBox = GetTemplateChild( PART_FilterBox ) as FilterBox;
SetFilter(_allowFilter);
}
#endregion //Base Class Overrides
#region Event Handlers
private void OnMouseDownOutsideCapturedElement( object sender, MouseButtonEventArgs e )
{
CloseDropDown( true );
}
private void OnKeyDown( object sender, KeyEventArgs e )
{
if( !IsDropDownOpen )
{
if( KeyboardUtilities.IsKeyModifyingPopupState( e ) )
{
IsDropDownOpen = true;
// Popup_Opened() will Focus on ComboBoxItem.
e.Handled = true;
}
}
else
{
if( KeyboardUtilities.IsKeyModifyingPopupState( e ) )
{
CloseDropDown( true );
e.Handled = true;
}
else if( e.Key == Key.Enter )
{
CloseDropDown( true );
e.Handled = true;
}
else if( e.Key == Key.Escape )
{
SelectedItems.Clear();
foreach( object o in _initialValue )
SelectedItems.Add( o );
CloseDropDown( true );
e.Handled = true;
}
}
}
private void Popup_Opened( object sender, EventArgs e )
{
UIElement item = ItemContainerGenerator.ContainerFromItem( SelectedItem ) as UIElement;
if( (item == null) && (Items.Count > 0) )
item = ItemContainerGenerator.ContainerFromItem( Items[0] ) as UIElement;
if( item != null )
item.Focus();
}
#endregion //Event Handlers
#region Methods
protected virtual void UpdateText()
{
#if VS2008
string newValue = String.Join( Delimiter, SelectedItems.Cast<object>().Select( x => GetItemDisplayValue( x ).ToString() ).ToArray() );
#else
string newValue = String.Join( Delimiter, SelectedItems.Cast<object>().Select( x => GetItemDisplayValue( x ) ) );
#endif
if( String.IsNullOrEmpty( Text ) || !Text.Equals( newValue ) )
{
_ignoreTextValueChanged = true;
#if VS2008
Text = newValue;
#else
this.SetCurrentValue( CheckComboBox.TextProperty, newValue );
#endif
_ignoreTextValueChanged = false;
}
}
private void UpdateDisplayMemberPathValuesBindings()
{
_displayMemberPathValuesChangeHelper.UpdateValueSource( ItemsCollection, this.DisplayMemberPath );
}
private void OnDisplayMemberPathValuesChanged()
{
this.UpdateText();
}
/// <summary>
/// Updates the SelectedItems collection based on the content of
/// the Text property.
/// </summary>
private void UpdateFromText()
{
List<string> selectedValues = null;
if( !String.IsNullOrEmpty( this.Text ) )
{
selectedValues = this.Text.Replace( " ", string.Empty ).Split( new string[] { Delimiter }, StringSplitOptions.RemoveEmptyEntries ).ToList();
}
this.UpdateFromList( selectedValues, this.GetItemDisplayValue );
}
protected object GetItemDisplayValue( object item )
{
if( String.IsNullOrEmpty( this.DisplayMemberPath ) )
return item;
string[] nameParts = this.DisplayMemberPath.Split( '.' );
if( nameParts.Length == 1 )
{
var property = item.GetType().GetProperty( this.DisplayMemberPath );
if( property != null )
return property.GetValue( item, null );
return item;
}
for( int i = 0; i < nameParts.Count(); ++i )
{
var type = item.GetType();
var info = type.GetProperty( nameParts[ i ] );
if( info == null )
{
return item;
}
if( i == nameParts.Count() - 1 )
{
return info.GetValue( item, null );
}
else
{
item = info.GetValue( item, null );
}
}
return item;
}
private void CloseDropDown( bool isFocusOnComboBox )
{
if( IsDropDownOpen )
IsDropDownOpen = false;
ReleaseMouseCapture();
if( isFocusOnComboBox )
Focus();
}
#endregion //Methods
}
}