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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
|
/*************************************************************************************
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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows;
using System.Windows.Media;
using System.Windows.Controls.Primitives;
using System.Windows.Input;
using System.IO;
using Tango.ColorPicker.Core;
using System.ComponentModel;
namespace Tango.ColorPicker.Primitives
{
[TemplatePart(Name = PART_HeaderThumb, Type = typeof(Thumb))]
[TemplatePart(Name = PART_Icon, Type = typeof(Image))]
[TemplatePart(Name = PART_CloseButton, Type = typeof(Button))]
[TemplatePart(Name = PART_ToolWindowCloseButton, Type = typeof(Button))]
[TemplatePart(Name = PART_BlockMouseInputsBorder, Type = typeof(Border))]
[TemplatePart(Name = PART_HeaderGrid, Type = typeof(Grid))]
internal class WindowControl : ContentControl
{
public static readonly ComponentResourceKey DefaultCloseButtonStyleKey = new ComponentResourceKey(typeof(WindowControl), "DefaultCloseButtonStyle");
private const string PART_HeaderThumb = "PART_HeaderThumb";
private const string PART_Icon = "PART_Icon";
private const string PART_CloseButton = "PART_CloseButton";
private const string PART_ToolWindowCloseButton = "PART_ToolWindowCloseButton";
private const string PART_BlockMouseInputsBorder = "PART_BlockMouseInputsBorder";
private const string PART_HeaderGrid = "PART_HeaderGrid";
#region Members
private Thumb _headerThumb;
private Image _icon;
private Button _closeButton;
private Button _windowToolboxCloseButton;
private bool _setIsActiveInternal;
internal Border _windowBlockMouseInputsPanel;
#endregion
#region Constructors
static WindowControl()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(WindowControl), new FrameworkPropertyMetadata(typeof(WindowControl)));
}
public WindowControl()
{
}
#endregion //Constructors
#region Dependency Properties
#region Public DP
#region Caption
public static readonly DependencyProperty CaptionProperty = DependencyProperty.Register("Caption", typeof(string), typeof(WindowControl), new UIPropertyMetadata(String.Empty));
public string Caption
{
get
{
return (string)GetValue(CaptionProperty);
}
set
{
SetValue(CaptionProperty, value);
}
}
#endregion //Caption
#region CaptionFontSize
public static readonly DependencyProperty CaptionFontSizeProperty = DependencyProperty.Register("CaptionFontSize", typeof(double), typeof(WindowControl), new UIPropertyMetadata(15d));
public double CaptionFontSize
{
get
{
return (double)GetValue(CaptionFontSizeProperty);
}
set
{
SetValue(CaptionFontSizeProperty, value);
}
}
#endregion //CaptionFontSize
#region CaptionForeground
public static readonly DependencyProperty CaptionForegroundProperty = DependencyProperty.Register("CaptionForeground", typeof(Brush), typeof(WindowControl), new UIPropertyMetadata(null));
public Brush CaptionForeground
{
get
{
return (Brush)GetValue(CaptionForegroundProperty);
}
set
{
SetValue(CaptionForegroundProperty, value);
}
}
#endregion //CaptionForeground
#region CaptionShadowBrush
public static readonly DependencyProperty CaptionShadowBrushProperty = DependencyProperty.Register("CaptionShadowBrush", typeof(Brush), typeof(WindowControl), new UIPropertyMetadata(new SolidColorBrush(Color.FromArgb(179, 255, 255, 255))));
public Brush CaptionShadowBrush
{
get
{
return (Brush)GetValue(CaptionShadowBrushProperty);
}
set
{
SetValue(CaptionShadowBrushProperty, value);
}
}
#endregion //CaptionShadowBrush
#region CaptionIcon
public static readonly DependencyProperty CaptionIconProperty = DependencyProperty.Register("CaptionIcon", typeof(ImageSource), typeof(WindowControl), new UIPropertyMetadata(null));
public ImageSource CaptionIcon
{
get
{
return (ImageSource)GetValue(CaptionIconProperty);
}
set
{
SetValue(CaptionIconProperty, value);
}
}
#endregion //CaptionIcon
#region CloseButtonStyle
public static readonly DependencyProperty CloseButtonStyleProperty = DependencyProperty.Register("CloseButtonStyle", typeof(Style), typeof(WindowControl), new UIPropertyMetadata(null));
public Style CloseButtonStyle
{
get
{
return (Style)GetValue(CloseButtonStyleProperty);
}
set
{
SetValue(CloseButtonStyleProperty, value);
}
}
#endregion //CloseButtonStyle
#region CloseButtonVisibility
public static readonly DependencyProperty CloseButtonVisibilityProperty = DependencyProperty.Register("CloseButtonVisibility", typeof(Visibility), typeof(WindowControl), new PropertyMetadata(Visibility.Visible, null, OnCoerceCloseButtonVisibility));
public Visibility CloseButtonVisibility
{
get
{
return (Visibility)GetValue(CloseButtonVisibilityProperty);
}
set
{
SetValue(CloseButtonVisibilityProperty, value);
}
}
private static object OnCoerceCloseButtonVisibility(DependencyObject d, object basevalue)
{
if (basevalue == DependencyProperty.UnsetValue)
return basevalue;
WindowControl windowControl = d as WindowControl;
if (windowControl == null)
return basevalue;
return windowControl.OnCoerceCloseButtonVisibility((Visibility)basevalue);
}
protected virtual object OnCoerceCloseButtonVisibility(Visibility newValue)
{
return newValue;
}
#endregion //CloseButtonVisibility
#region IsActive
public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register("IsActive", typeof(bool), typeof(WindowControl), new UIPropertyMetadata(true, null, OnCoerceIsActive));
public bool IsActive
{
get
{
return (bool)GetValue(IsActiveProperty);
}
set
{
SetValue(IsActiveProperty, value);
}
}
private static object OnCoerceIsActive(DependencyObject d, object basevalue)
{
WindowControl w = d as WindowControl;
if (w != null && !w._setIsActiveInternal && !w.AllowPublicIsActiveChange)
throw new InvalidOperationException("Cannot set IsActive directly. This is handled by the underlying system");
return basevalue;
}
internal void SetIsActiveInternal(bool isActive)
{
_setIsActiveInternal = true;
this.IsActive = isActive;
_setIsActiveInternal = false;
}
#endregion //IsActive
#region Left
public static readonly DependencyProperty LeftProperty = DependencyProperty.Register("Left", typeof(double), typeof(WindowControl), new PropertyMetadata(0.0, new PropertyChangedCallback(OnLeftPropertyChanged), OnCoerceLeft));
public double Left
{
get
{
return (double)GetValue(LeftProperty);
}
set
{
SetValue(LeftProperty, value);
}
}
private static object OnCoerceLeft(DependencyObject d, object basevalue)
{
if (basevalue == DependencyProperty.UnsetValue)
return basevalue;
var windowControl = (WindowControl)d;
if (windowControl == null)
return basevalue;
return windowControl.OnCoerceLeft(basevalue);
}
private object OnCoerceLeft(object newValue)
{
var value = (double)newValue;
if (object.Equals(value, double.NaN))
return 0.0;
return newValue;
}
private static void OnLeftPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
WindowControl windowControl = obj as WindowControl;
if (windowControl != null)
windowControl.OnLeftPropertyChanged((double)e.OldValue, (double)e.NewValue);
}
internal event EventHandler<EventArgs> LeftChanged;
protected virtual void OnLeftPropertyChanged(double oldValue, double newValue)
{
EventHandler<EventArgs> handler = LeftChanged;
if (handler != null)
{
handler(this, EventArgs.Empty);
}
}
#endregion //Left
#region Top
public static readonly DependencyProperty TopProperty = DependencyProperty.Register("Top", typeof(double), typeof(WindowControl), new PropertyMetadata(0.0, new PropertyChangedCallback(OnTopPropertyChanged), OnCoerceTop));
public double Top
{
get
{
return (double)GetValue(TopProperty);
}
set
{
SetValue(TopProperty, value);
}
}
private static object OnCoerceTop(DependencyObject d, object basevalue)
{
if (basevalue == DependencyProperty.UnsetValue)
return basevalue;
var windowControl = (WindowControl)d;
if (windowControl == null)
return basevalue;
return windowControl.OnCoerceTop(basevalue);
}
private object OnCoerceTop(object newValue)
{
var value = (double)newValue;
if (object.Equals(value, double.NaN))
return 0.0;
return newValue;
}
private static void OnTopPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
WindowControl windowControl = obj as WindowControl;
if (windowControl != null)
windowControl.OnTopPropertyChanged((double)e.OldValue, (double)e.NewValue);
}
internal event EventHandler<EventArgs> TopChanged;
protected virtual void OnTopPropertyChanged(double oldValue, double newValue)
{
EventHandler<EventArgs> handler = TopChanged;
if (handler != null)
{
handler(this, EventArgs.Empty);
}
}
#endregion //TopProperty
#region WindowBackground
public static readonly DependencyProperty WindowBackgroundProperty = DependencyProperty.Register("WindowBackground", typeof(Brush), typeof(WindowControl), new PropertyMetadata(null));
public Brush WindowBackground
{
get
{
return (Brush)GetValue(WindowBackgroundProperty);
}
set
{
SetValue(WindowBackgroundProperty, value);
}
}
#endregion // WindowBackground
#region WindowBorderBrush
public static readonly DependencyProperty WindowBorderBrushProperty = DependencyProperty.Register("WindowBorderBrush", typeof(Brush), typeof(WindowControl), new PropertyMetadata(null));
public Brush WindowBorderBrush
{
get
{
return (Brush)GetValue(WindowBorderBrushProperty);
}
set
{
SetValue(WindowBorderBrushProperty, value);
}
}
#endregion //WindowBorderBrush
#region WindowBorderThickness
public static readonly DependencyProperty WindowBorderThicknessProperty = DependencyProperty.Register("WindowBorderThickness", typeof(Thickness), typeof(WindowControl), new PropertyMetadata(new Thickness(0)));
public Thickness WindowBorderThickness
{
get
{
return (Thickness)GetValue(WindowBorderThicknessProperty);
}
set
{
SetValue(WindowBorderThicknessProperty, value);
}
}
#endregion //WindowBorderThickness
#region WindowInactiveBackground
public static readonly DependencyProperty WindowInactiveBackgroundProperty = DependencyProperty.Register("WindowInactiveBackground", typeof(Brush), typeof(WindowControl), new PropertyMetadata(null));
public Brush WindowInactiveBackground
{
get
{
return (Brush)GetValue(WindowInactiveBackgroundProperty);
}
set
{
SetValue(WindowInactiveBackgroundProperty, value);
}
}
#endregion // WindowInactiveBackground
#region WindowOpacity
public static readonly DependencyProperty WindowOpacityProperty = DependencyProperty.Register("WindowOpacity", typeof(double), typeof(WindowControl), new PropertyMetadata(1d));
public double WindowOpacity
{
get
{
return (double)GetValue(WindowOpacityProperty);
}
set
{
SetValue(WindowOpacityProperty, value);
}
}
#endregion //WindowOpacity
#region WindowStyle
public static readonly DependencyProperty WindowStyleProperty = DependencyProperty.Register("WindowStyle", typeof(WindowStyle), typeof(WindowControl), new PropertyMetadata(WindowStyle.SingleBorderWindow, null, OnCoerceWindowStyle));
public WindowStyle WindowStyle
{
get
{
return (WindowStyle)GetValue(WindowStyleProperty);
}
set
{
SetValue(WindowStyleProperty, value);
}
}
private static object OnCoerceWindowStyle(DependencyObject d, object basevalue)
{
if (basevalue == DependencyProperty.UnsetValue)
return basevalue;
WindowControl windowControl = d as WindowControl;
if (windowControl == null)
return basevalue;
return windowControl.OnCoerceWindowStyle((WindowStyle)basevalue);
}
protected virtual object OnCoerceWindowStyle(WindowStyle newValue)
{
return newValue;
}
private static void OnWindowStyleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
WindowControl window = (WindowControl)d;
if (window != null)
window.OnWindowStyleChanged((WindowStyle)e.OldValue, (WindowStyle)e.NewValue);
}
protected virtual void OnWindowStyleChanged(WindowStyle oldValue, WindowStyle newValue)
{
}
#endregion //WindowStyle
#region WindowThickness
public static readonly DependencyProperty WindowThicknessProperty = DependencyProperty.Register("WindowThickness", typeof(Thickness), typeof(WindowControl),
new PropertyMetadata(new Thickness(SystemParameters.ResizeFrameVerticalBorderWidth - 3,
SystemParameters.ResizeFrameHorizontalBorderHeight - 3,
SystemParameters.ResizeFrameVerticalBorderWidth - 3,
SystemParameters.ResizeFrameHorizontalBorderHeight - 3)));
public Thickness WindowThickness
{
get
{
return (Thickness)GetValue(WindowThicknessProperty);
}
set
{
SetValue(WindowThicknessProperty, value);
}
}
#endregion //WindowThickness
#endregion //Public DP
#endregion //Dependency Properties
#region Internal Properties
internal bool IsStartupPositionInitialized
{
get;
set;
}
#region IsBlockMouseInputsPanelActive (Internal)
internal bool IsBlockMouseInputsPanelActive
{
get
{
return _IsBlockMouseInputsPanelActive;
}
set
{
if (value != _IsBlockMouseInputsPanelActive)
{
_IsBlockMouseInputsPanelActive = value;
this.UpdateBlockMouseInputsPanel();
}
}
}
private bool _IsBlockMouseInputsPanelActive;
#endregion
internal virtual bool AllowPublicIsActiveChange
{
get { return true; }
}
#endregion //Internal Properties
#region Base Class Overrides
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
if (_headerThumb != null)
{
_headerThumb.PreviewMouseLeftButtonDown -= new MouseButtonEventHandler(this.HeaderPreviewMouseLeftButtonDown);
_headerThumb.PreviewMouseRightButtonDown -= new MouseButtonEventHandler(this.HeaderPreviewMouseRightButtonDown);
_headerThumb.DragDelta -= new DragDeltaEventHandler(this.HeaderThumbDragDelta);
}
_headerThumb = this.Template.FindName(PART_HeaderThumb, this) as Thumb;
if (_headerThumb != null)
{
_headerThumb.PreviewMouseLeftButtonDown += new MouseButtonEventHandler(this.HeaderPreviewMouseLeftButtonDown);
_headerThumb.PreviewMouseRightButtonDown += new MouseButtonEventHandler(this.HeaderPreviewMouseRightButtonDown);
_headerThumb.DragDelta += new DragDeltaEventHandler(this.HeaderThumbDragDelta);
}
if (_icon != null)
{
_icon.MouseLeftButtonDown -= new MouseButtonEventHandler(this.IconMouseLeftButtonDown);
}
_icon = this.Template.FindName(PART_Icon, this) as Image;
if (_icon != null)
{
_icon.MouseLeftButtonDown += new MouseButtonEventHandler(this.IconMouseLeftButtonDown);
}
if (_closeButton != null)
{
_closeButton.Click -= new RoutedEventHandler(this.Close);
}
_closeButton = this.Template.FindName(PART_CloseButton, this) as Button;
if (_closeButton != null)
{
_closeButton.Click += new RoutedEventHandler(this.Close);
}
if (_windowToolboxCloseButton != null)
{
_windowToolboxCloseButton.Click -= new RoutedEventHandler(this.Close);
}
_windowToolboxCloseButton = this.Template.FindName(PART_ToolWindowCloseButton, this) as Button;
if (_windowToolboxCloseButton != null)
{
_windowToolboxCloseButton.Click += new RoutedEventHandler(this.Close);
}
_windowBlockMouseInputsPanel = this.Template.FindName(PART_BlockMouseInputsBorder, this) as Border;
this.UpdateBlockMouseInputsPanel();
}
#endregion //Base Class Overrides
#region Events
#region HeaderMouseLeftButtonClickedEvent
public static readonly RoutedEvent HeaderMouseLeftButtonClickedEvent = EventManager.RegisterRoutedEvent("HeaderMouseLeftButtonClicked", RoutingStrategy.Bubble, typeof(MouseButtonEventHandler), typeof(WindowControl));
public event MouseButtonEventHandler HeaderMouseLeftButtonClicked
{
add
{
AddHandler(HeaderMouseLeftButtonClickedEvent, value);
}
remove
{
RemoveHandler(HeaderMouseLeftButtonClickedEvent, value);
}
}
#endregion //HeaderMouseLeftButtonClickedEvent
#region HeaderMouseRightButtonClickedEvent
public static readonly RoutedEvent HeaderMouseRightButtonClickedEvent = EventManager.RegisterRoutedEvent("HeaderMouseRightButtonClicked", RoutingStrategy.Bubble, typeof(MouseButtonEventHandler), typeof(WindowControl));
public event MouseButtonEventHandler HeaderMouseRightButtonClicked
{
add
{
AddHandler(HeaderMouseRightButtonClickedEvent, value);
}
remove
{
RemoveHandler(HeaderMouseRightButtonClickedEvent, value);
}
}
#endregion //HeaderMouseRightButtonClickedEvent
#region HeaderMouseLeftButtonDoubleClickedEvent
public static readonly RoutedEvent HeaderMouseLeftButtonDoubleClickedEvent = EventManager.RegisterRoutedEvent("HeaderMouseLeftButtonDoubleClicked", RoutingStrategy.Bubble, typeof(MouseButtonEventHandler), typeof(WindowControl));
public event MouseButtonEventHandler HeaderMouseLeftButtonDoubleClicked
{
add
{
AddHandler(HeaderMouseLeftButtonDoubleClickedEvent, value);
}
remove
{
RemoveHandler(HeaderMouseLeftButtonDoubleClickedEvent, value);
}
}
#endregion //HeaderMouseLeftButtonDoubleClickedEvent
#region HeaderDragDeltaEvent
public static readonly RoutedEvent HeaderDragDeltaEvent = EventManager.RegisterRoutedEvent("HeaderDragDelta", RoutingStrategy.Bubble, typeof(DragDeltaEventHandler), typeof(WindowControl));
public event DragDeltaEventHandler HeaderDragDelta
{
add
{
AddHandler(HeaderDragDeltaEvent, value);
}
remove
{
RemoveHandler(HeaderDragDeltaEvent, value);
}
}
#endregion //HeaderDragDeltaEvent
#region HeaderIconClickedEvent
public static readonly RoutedEvent HeaderIconClickedEvent = EventManager.RegisterRoutedEvent("HeaderIconClicked", RoutingStrategy.Bubble, typeof(MouseButtonEventHandler), typeof(WindowControl));
public event MouseButtonEventHandler HeaderIconClicked
{
add
{
AddHandler(HeaderIconClickedEvent, value);
}
remove
{
RemoveHandler(HeaderIconClickedEvent, value);
}
}
#endregion //HeaderIconClickedEvent
#region HeaderIconDoubleClickedEvent
public static readonly RoutedEvent HeaderIconDoubleClickedEvent = EventManager.RegisterRoutedEvent("HeaderIconDoubleClicked", RoutingStrategy.Bubble, typeof(MouseButtonEventHandler), typeof(WindowControl));
public event MouseButtonEventHandler HeaderIconDoubleClicked
{
add
{
AddHandler(HeaderIconDoubleClickedEvent, value);
}
remove
{
RemoveHandler(HeaderIconDoubleClickedEvent, value);
}
}
#endregion //HeaderIconDoubleClickedEvent
#region CloseButtonClickedEvent
public static readonly RoutedEvent CloseButtonClickedEvent = EventManager.RegisterRoutedEvent("CloseButtonClicked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(WindowControl));
public event RoutedEventHandler CloseButtonClicked
{
add
{
AddHandler(CloseButtonClickedEvent, value);
}
remove
{
RemoveHandler(CloseButtonClickedEvent, value);
}
}
#endregion //CloseButtonClickedEvent
#endregion //Events
#region Event Handler
private void HeaderPreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
MouseButtonEventArgs args = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Left);
args.RoutedEvent = (e.ClickCount == 2) ? HeaderMouseLeftButtonDoubleClickedEvent : HeaderMouseLeftButtonClickedEvent;
args.Source = this;
this.RaiseEvent(args);
}
private void HeaderPreviewMouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
MouseButtonEventArgs args = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Right);
args.RoutedEvent = HeaderMouseRightButtonClickedEvent;
args.Source = this;
this.RaiseEvent(args);
}
private void HeaderThumbDragDelta(object sender, DragDeltaEventArgs e)
{
DragDeltaEventArgs args = new DragDeltaEventArgs(e.HorizontalChange, e.VerticalChange);
args.RoutedEvent = HeaderDragDeltaEvent;
args.Source = this;
this.RaiseEvent(args);
}
private void IconMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
MouseButtonEventArgs args = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Left);
args.RoutedEvent = (e.ClickCount == 2) ? HeaderIconDoubleClickedEvent : HeaderIconClickedEvent;
args.Source = this;
this.RaiseEvent(args);
}
private void Close(object sender, RoutedEventArgs e)
{
this.RaiseEvent(new RoutedEventArgs(CloseButtonClickedEvent, this));
}
#endregion // Event Handler
#region Internal Methods
internal virtual void UpdateBlockMouseInputsPanel()
{
if (_windowBlockMouseInputsPanel != null)
{
_windowBlockMouseInputsPanel.Visibility = this.IsBlockMouseInputsPanelActive ? Visibility.Visible : Visibility.Collapsed;
}
}
internal double GetHeaderHeight()
{
Grid headerGrid = this.Template.FindName(PART_HeaderGrid, this) as Grid;
if (headerGrid != null)
return headerGrid.ActualHeight;
return 0;
}
#endregion
#region Private Methods
#endregion //Private Methods
}
}
|