blob: 2149409a12dcbd65f691572ee6866e89278df8e6 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace Tango.Visuals
{
/// <summary>
/// Interaction logic for AnalogSwitch.xaml
/// </summary>
public partial class AnalogSwitch : UserControl
{
public event Action<AnalogSwitch> CheckedChanged;
public AnalogSwitch()
{
InitializeComponent();
this.PreviewMouseUp += AnalogSwitch_PreviewMouseUp;
}
void AnalogSwitch_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
IsChecked = !IsChecked;
}
public bool IsChecked
{
get { return (bool)GetValue(IsCheckedProperty); }
set { SetValue(IsCheckedProperty, value); }
}
// Using a DependencyProperty as the backing store for IsChecked. This enables animation, styling, binding, etc...
public static readonly DependencyProperty IsCheckedProperty =
DependencyProperty.Register("IsChecked", typeof(bool), typeof(AnalogSwitch), new PropertyMetadata(false,new PropertyChangedCallback(CheckChanged)));
private static void CheckChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
AnalogSwitch s = d as AnalogSwitch;
if ((bool)e.NewValue)
{
s.imgON.Visibility = Visibility.Visible;
s.imgOFF.Visibility = Visibility.Hidden;
}
else
{
s.imgOFF.Visibility = Visibility.Visible;
s.imgON.Visibility = Visibility.Hidden;
}
if (s.CheckedChanged != null) s.CheckedChanged(s);
}
}
}
|