-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathExtendedSlider.cs
More file actions
744 lines (622 loc) · 24.1 KB
/
ExtendedSlider.cs
File metadata and controls
744 lines (622 loc) · 24.1 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
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
/*===================================================================================
*
* Copyright (c) Userware (OpenSilver.net)
*
* This file is part of the OpenSilver.ControlsKit (https://opensilver.net), which
* is licensed under the MIT license (https://opensource.org/licenses/MIT).
*
* As stated in the MIT license, "the above copyright notice and this permission
* notice shall be included in all copies or substantial portions of the Software."
*
*====================================================================================*/
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
namespace OpenSilver.ControlsKit.Controls
{
/// <summary>
/// Specifies the size of the slider control.
/// </summary>
public enum SliderSize
{
/// <summary>
/// Small slider size.
/// </summary>
Small,
/// <summary>
/// Medium slider size.
/// </summary>
Medium,
/// <summary>
/// Large slider size.
/// </summary>
Large,
/// <summary>
/// Custom slider size.
/// </summary>
Custom
}
/// <summary>
/// A customizable slider control with smooth animations, hover effects, and flexible styling options.
/// Provides advanced visual capabilities including shadows, custom colors for different states, and smooth transitions.
/// </summary>
public class ExtendedSlider : ContentControl
{
#region Events
/// <summary>
/// Occurs when the Value property changes.
/// </summary>
public event RoutedPropertyChangedEventHandler<double> ValueChanged;
#endregion
#region Dependency Properties
/// <summary>
/// Identifies the Value dependency property.
/// </summary>
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register(nameof(Value), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(0.0, OnValueChanged, CoerceValue));
/// <summary>
/// Identifies the Minimum dependency property.
/// </summary>
public static readonly DependencyProperty MinimumProperty =
DependencyProperty.Register(nameof(Minimum), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(0.0, OnRangeChanged));
/// <summary>
/// Identifies the Maximum dependency property.
/// </summary>
public static readonly DependencyProperty MaximumProperty =
DependencyProperty.Register(nameof(Maximum), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(100.0, OnRangeChanged));
/// <summary>
/// Identifies the SliderSize dependency property.
/// </summary>
public static readonly DependencyProperty SliderSizeProperty =
DependencyProperty.Register(nameof(SliderSize), typeof(SliderSize), typeof(ExtendedSlider),
new PropertyMetadata(SliderSize.Medium, OnSliderSizeChanged));
/// <summary>
/// Identifies the TrackWidth dependency property.
/// </summary>
public static readonly DependencyProperty TrackWidthProperty =
DependencyProperty.Register(nameof(TrackWidth), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(200.0, OnLayoutChanged));
/// <summary>
/// Identifies the TrackHeight dependency property.
/// </summary>
public static readonly DependencyProperty TrackHeightProperty =
DependencyProperty.Register(nameof(TrackHeight), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(6.0, OnLayoutChanged));
/// <summary>
/// Identifies the ThumbSize dependency property.
/// </summary>
public static readonly DependencyProperty ThumbSizeProperty =
DependencyProperty.Register(nameof(ThumbSize), typeof(double), typeof(ExtendedSlider),
new PropertyMetadata(20.0, OnLayoutChanged));
/// <summary>
/// Identifies the CornerRadius dependency property.
/// </summary>
public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register(nameof(CornerRadius), typeof(CornerRadius), typeof(ExtendedSlider),
new PropertyMetadata(new CornerRadius(3), OnStyleChanged));
/// <summary>
/// Identifies the TrackBrush dependency property.
/// </summary>
public static readonly DependencyProperty TrackBrushProperty =
DependencyProperty.Register(nameof(TrackBrush), typeof(Brush), typeof(ExtendedSlider),
new PropertyMetadata(new SolidColorBrush(Colors.LightGray), OnStyleChanged));
/// <summary>
/// Identifies the TrackBorderBrush dependency property.
/// </summary>
public static readonly DependencyProperty TrackBorderBrushProperty =
DependencyProperty.Register(nameof(TrackBorderBrush), typeof(Brush), typeof(ExtendedSlider),
new PropertyMetadata(null, OnStyleChanged));
/// <summary>
/// Identifies the TrackBorderThickness dependency property.
/// </summary>
public static readonly DependencyProperty TrackBorderThicknessProperty =
DependencyProperty.Register(nameof(TrackBorderThickness), typeof(Thickness), typeof(ExtendedSlider),
new PropertyMetadata(new Thickness(0), OnStyleChanged));
/// <summary>
/// Identifies the FillBrush dependency property.
/// </summary>
public static readonly DependencyProperty FillBrushProperty =
DependencyProperty.Register(nameof(FillBrush), typeof(Brush), typeof(ExtendedSlider),
new PropertyMetadata(new SolidColorBrush(Colors.DodgerBlue), OnStyleChanged));
/// <summary>
/// Identifies the ThumbBrush dependency property.
/// </summary>
public static readonly DependencyProperty ThumbBrushProperty =
DependencyProperty.Register(nameof(ThumbBrush), typeof(Brush), typeof(ExtendedSlider),
new PropertyMetadata(new SolidColorBrush(Colors.White), OnStyleChanged));
/// <summary>
/// Identifies the ThumbBorderBrush dependency property.
/// </summary>
public static readonly DependencyProperty ThumbBorderBrushProperty =
DependencyProperty.Register(nameof(ThumbBorderBrush), typeof(Brush), typeof(ExtendedSlider),
new PropertyMetadata(new SolidColorBrush(Colors.Gray), OnStyleChanged));
/// <summary>
/// Identifies the ThumbBorderThickness dependency property.
/// </summary>
public static readonly DependencyProperty ThumbBorderThicknessProperty =
DependencyProperty.Register(nameof(ThumbBorderThickness), typeof(Thickness), typeof(ExtendedSlider),
new PropertyMetadata(new Thickness(1), OnStyleChanged));
/// <summary>
/// Identifies the HasShadow dependency property.
/// </summary>
public static readonly DependencyProperty HasShadowProperty =
DependencyProperty.Register(nameof(HasShadow), typeof(bool), typeof(ExtendedSlider),
new PropertyMetadata(true, OnStyleChanged));
/// <summary>
/// Identifies the IsAnimated dependency property.
/// </summary>
public static readonly DependencyProperty IsAnimatedProperty =
DependencyProperty.Register(nameof(IsAnimated), typeof(bool), typeof(ExtendedSlider),
new PropertyMetadata(true));
#endregion
#region Properties
/// <summary>
/// Gets or sets the current value of the slider.
/// </summary>
public double Value
{
get => (double)GetValue(ValueProperty);
set => SetValue(ValueProperty, value);
}
/// <summary>
/// Gets or sets the minimum value of the slider.
/// </summary>
public double Minimum
{
get => (double)GetValue(MinimumProperty);
set => SetValue(MinimumProperty, value);
}
/// <summary>
/// Gets or sets the maximum value of the slider.
/// </summary>
public double Maximum
{
get => (double)GetValue(MaximumProperty);
set => SetValue(MaximumProperty, value);
}
/// <summary>
/// Gets or sets the predefined size of the slider.
/// </summary>
public SliderSize SliderSize
{
get => (SliderSize)GetValue(SliderSizeProperty);
set => SetValue(SliderSizeProperty, value);
}
/// <summary>
/// Gets or sets the width of the track.
/// </summary>
public double TrackWidth
{
get => (double)GetValue(TrackWidthProperty);
set => SetValue(TrackWidthProperty, value);
}
/// <summary>
/// Gets or sets the height of the track.
/// </summary>
public double TrackHeight
{
get => (double)GetValue(TrackHeightProperty);
set => SetValue(TrackHeightProperty, value);
}
/// <summary>
/// Gets or sets the size of the thumb.
/// </summary>
public double ThumbSize
{
get => (double)GetValue(ThumbSizeProperty);
set => SetValue(ThumbSizeProperty, value);
}
/// <summary>
/// Gets or sets the corner radius of the slider track.
/// </summary>
public CornerRadius CornerRadius
{
get => (CornerRadius)GetValue(CornerRadiusProperty);
set => SetValue(CornerRadiusProperty, value);
}
/// <summary>
/// Gets or sets the brush used for the track background.
/// </summary>
public Brush TrackBrush
{
get => (Brush)GetValue(TrackBrushProperty);
set => SetValue(TrackBrushProperty, value);
}
/// <summary>
/// Gets or sets the border brush of the track.
/// </summary>
public Brush TrackBorderBrush
{
get => (Brush)GetValue(TrackBorderBrushProperty);
set => SetValue(TrackBorderBrushProperty, value);
}
/// <summary>
/// Gets or sets the border thickness of the track.
/// </summary>
public Thickness TrackBorderThickness
{
get => (Thickness)GetValue(TrackBorderThicknessProperty);
set => SetValue(TrackBorderThicknessProperty, value);
}
/// <summary>
/// Gets or sets the brush used for the filled portion of the track.
/// </summary>
public Brush FillBrush
{
get => (Brush)GetValue(FillBrushProperty);
set => SetValue(FillBrushProperty, value);
}
/// <summary>
/// Gets or sets the brush used for the thumb.
/// </summary>
public Brush ThumbBrush
{
get => (Brush)GetValue(ThumbBrushProperty);
set => SetValue(ThumbBrushProperty, value);
}
/// <summary>
/// Gets or sets the border brush of the thumb.
/// </summary>
public Brush ThumbBorderBrush
{
get => (Brush)GetValue(ThumbBorderBrushProperty);
set => SetValue(ThumbBorderBrushProperty, value);
}
/// <summary>
/// Gets or sets the border thickness of the thumb.
/// </summary>
public Thickness ThumbBorderThickness
{
get => (Thickness)GetValue(ThumbBorderThicknessProperty);
set => SetValue(ThumbBorderThicknessProperty, value);
}
/// <summary>
/// Gets or sets a value indicating whether the slider has a drop shadow effect.
/// </summary>
public bool HasShadow
{
get => (bool)GetValue(HasShadowProperty);
set => SetValue(HasShadowProperty, value);
}
/// <summary>
/// Gets or sets a value indicating whether value changes are animated.
/// </summary>
public bool IsAnimated
{
get => (bool)GetValue(IsAnimatedProperty);
set => SetValue(IsAnimatedProperty, value);
}
#endregion
#region Private Fields
private Canvas _rootCanvas;
private Border _trackBorder;
private Border _fillBorder;
private Border _thumbBorder;
private bool _isDragging;
private bool _isHovered;
private Point _lastMousePosition;
#endregion
#region Constructor
/// <summary>
/// Initializes a new instance of the ExtendedSlider class.
/// </summary>
public ExtendedSlider()
{
InitializeComponent();
Loaded += OnLoaded;
}
#endregion
#region Initialization
private void InitializeComponent()
{
_rootCanvas = new Canvas
{
Background = new SolidColorBrush(Colors.Transparent)
};
_trackBorder = new Border
{
Background = TrackBrush,
BorderBrush = TrackBorderBrush,
BorderThickness = TrackBorderThickness,
CornerRadius = CornerRadius
};
_fillBorder = new Border
{
Background = FillBrush,
CornerRadius = CornerRadius
};
_thumbBorder = new Border
{
Background = ThumbBrush,
BorderBrush = ThumbBorderBrush,
BorderThickness = ThumbBorderThickness,
CornerRadius = new CornerRadius(10),
Cursor = Cursors.Hand
};
_rootCanvas.Children.Add(_trackBorder);
_rootCanvas.Children.Add(_fillBorder);
_rootCanvas.Children.Add(_thumbBorder);
Content = _rootCanvas;
SetupEventHandlers();
}
private void SetupEventHandlers()
{
_rootCanvas.MouseLeftButtonDown += OnCanvasMouseDown;
_rootCanvas.MouseMove += OnCanvasMouseMove;
_rootCanvas.MouseLeftButtonUp += OnCanvasMouseUp;
_thumbBorder.MouseLeftButtonDown += OnThumbMouseDown;
_thumbBorder.MouseEnter += OnThumbMouseEnter;
_thumbBorder.MouseLeave += OnThumbMouseLeave;
KeyDown += OnKeyDown;
Focusable = true;
}
private void OnLoaded(object sender, RoutedEventArgs e)
{
ApplySizePreset();
UpdateLayout();
UpdateVisualElements();
UpdateValueDisplay();
}
#endregion
#region Layout and Visual Updates
private void ApplySizePreset()
{
switch (SliderSize)
{
case SliderSize.Small:
TrackWidth = 150;
TrackHeight = 4;
ThumbSize = 16;
break;
case SliderSize.Medium:
TrackWidth = 200;
TrackHeight = 6;
ThumbSize = 20;
break;
case SliderSize.Large:
TrackWidth = 250;
TrackHeight = 8;
ThumbSize = 24;
break;
case SliderSize.Custom:
break;
}
}
private void UpdateLayout()
{
if (_rootCanvas == null) return;
var canvasHeight = Math.Max(TrackHeight, ThumbSize) + 4;
_rootCanvas.Width = TrackWidth;
_rootCanvas.Height = canvasHeight;
_trackBorder.Width = TrackWidth;
_trackBorder.Height = TrackHeight;
Canvas.SetLeft(_trackBorder, 0);
Canvas.SetTop(_trackBorder, (canvasHeight - TrackHeight) / 2);
UpdateValueDisplay();
_thumbBorder.Width = ThumbSize;
_thumbBorder.Height = ThumbSize;
_thumbBorder.CornerRadius = new CornerRadius(ThumbSize / 2);
UpdateShadowEffect();
}
private void UpdateValueDisplay()
{
if (_fillBorder == null || _thumbBorder == null) return;
var range = Maximum - Minimum;
if (range <= 0) return;
var normalizedValue = Math.Max(0, Math.Min(1, (Value - Minimum) / range));
var canvasHeight = _rootCanvas.Height;
var fillWidth = normalizedValue * TrackWidth;
_fillBorder.Width = fillWidth;
_fillBorder.Height = TrackHeight;
Canvas.SetLeft(_fillBorder, 0);
Canvas.SetTop(_fillBorder, (canvasHeight - TrackHeight) / 2);
var thumbPosition = normalizedValue * (TrackWidth - ThumbSize);
if (IsAnimated && !_isDragging)
{
AnimateThumbToPosition(thumbPosition);
}
else
{
Canvas.SetLeft(_thumbBorder, thumbPosition);
}
Canvas.SetTop(_thumbBorder, (canvasHeight - ThumbSize) / 2);
}
private void AnimateThumbToPosition(double targetPosition)
{
var currentPosition = Canvas.GetLeft(_thumbBorder);
if (double.IsNaN(currentPosition))
{
currentPosition = 0;
}
var animation = new DoubleAnimation
{
From = currentPosition,
To = targetPosition,
Duration = TimeSpan.FromMilliseconds(150),
EasingFunction = new QuadraticEase { EasingMode = EasingMode.EaseOut }
};
var storyboard = new Storyboard();
storyboard.Children.Add(animation);
Storyboard.SetTarget(animation, _thumbBorder);
Storyboard.SetTargetProperty(animation, new PropertyPath("(Canvas.Left)"));
storyboard.Begin();
}
private void UpdateVisualElements()
{
if (_trackBorder == null) return;
_trackBorder.Background = TrackBrush;
_trackBorder.BorderBrush = TrackBorderBrush;
_trackBorder.BorderThickness = TrackBorderThickness;
_trackBorder.CornerRadius = CornerRadius;
_fillBorder.Background = FillBrush;
_fillBorder.CornerRadius = CornerRadius;
_thumbBorder.Background = ThumbBrush;
_thumbBorder.BorderBrush = ThumbBorderBrush;
_thumbBorder.BorderThickness = ThumbBorderThickness;
ApplyHoverEffect();
}
private void ApplyHoverEffect()
{
if (_thumbBorder == null) return;
if (_isHovered)
{
var scaleTransform = new ScaleTransform { ScaleX = 1.1, ScaleY = 1.1 };
_thumbBorder.RenderTransform = scaleTransform;
_thumbBorder.RenderTransformOrigin = new Point(0.5, 0.5);
}
else
{
_thumbBorder.RenderTransform = null;
}
}
private void UpdateShadowEffect()
{
if (_thumbBorder == null) return;
if (HasShadow)
{
_thumbBorder.Effect = new DropShadowEffect
{
BlurRadius = 6,
Direction = 270,
ShadowDepth = 2,
Opacity = 0.25,
Color = Colors.Black
};
}
else
{
_thumbBorder.Effect = null;
}
}
#endregion
#region Event Handlers
private void OnCanvasMouseDown(object sender, MouseButtonEventArgs e)
{
if (!IsEnabled) return;
var position = e.GetPosition(_rootCanvas);
UpdateValueFromPosition(position.X);
_isDragging = true;
_rootCanvas.CaptureMouse();
Focus();
e.Handled = true;
}
private void OnCanvasMouseMove(object sender, MouseEventArgs e)
{
if (!IsEnabled || !_isDragging) return;
var position = e.GetPosition(_rootCanvas);
UpdateValueFromPosition(position.X);
e.Handled = true;
}
private void OnCanvasMouseUp(object sender, MouseButtonEventArgs e)
{
if (_isDragging)
{
_isDragging = false;
_rootCanvas.ReleaseMouseCapture();
e.Handled = true;
}
}
private void OnThumbMouseDown(object sender, MouseButtonEventArgs e)
{
if (!IsEnabled) return;
_isDragging = true;
_rootCanvas.CaptureMouse();
Focus();
e.Handled = true;
}
private void OnThumbMouseEnter(object sender, MouseEventArgs e)
{
_isHovered = true;
ApplyHoverEffect();
}
private void OnThumbMouseLeave(object sender, MouseEventArgs e)
{
_isHovered = false;
ApplyHoverEffect();
}
private void OnKeyDown(object sender, KeyEventArgs e)
{
if (!IsEnabled) return;
var step = (Maximum - Minimum) / 100;
var newValue = Value;
switch (e.Key)
{
case Key.Left:
case Key.Down:
newValue = Math.Max(Minimum, Value - step);
break;
case Key.Right:
case Key.Up:
newValue = Math.Min(Maximum, Value + step);
break;
case Key.Home:
newValue = Minimum;
break;
case Key.End:
newValue = Maximum;
break;
case Key.PageDown:
newValue = Math.Max(Minimum, Value - step * 10);
break;
case Key.PageUp:
newValue = Math.Min(Maximum, Value + step * 10);
break;
default:
return;
}
Value = newValue;
e.Handled = true;
}
private void UpdateValueFromPosition(double mouseX)
{
var normalizedPosition = Math.Max(0, Math.Min(1, mouseX / TrackWidth));
var newValue = Minimum + normalizedPosition * (Maximum - Minimum);
Value = newValue;
}
#endregion
#region Property Change Handlers
private static object CoerceValue(DependencyObject d, object value)
{
var slider = (ExtendedSlider)d;
var doubleValue = (double)value;
return Math.Max(slider.Minimum, Math.Min(slider.Maximum, doubleValue));
}
private static void OnValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var slider = (ExtendedSlider)d;
slider.ValueChanged?.Invoke(slider, new RoutedPropertyChangedEventArgs<double>(
(double)e.OldValue, (double)e.NewValue));
slider.UpdateValueDisplay();
}
private static void OnRangeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var slider = (ExtendedSlider)d;
slider.CoerceValue(ValueProperty);
slider.UpdateValueDisplay();
}
private static void OnSliderSizeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var slider = (ExtendedSlider)d;
slider.ApplySizePreset();
slider.UpdateLayout();
}
private static void OnLayoutChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var slider = (ExtendedSlider)d;
slider.UpdateLayout();
}
private static void OnStyleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var slider = (ExtendedSlider)d;
slider.UpdateVisualElements();
}
#endregion
}
}