-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatusTextBlock.cs
More file actions
86 lines (79 loc) · 2.75 KB
/
StatusTextBlock.cs
File metadata and controls
86 lines (79 loc) · 2.75 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
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.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace CommandoDash
{
/// <summary>
/// Follow steps 1a or 1b and then 2 to use this custom control in a XAML file.
///
/// Step 1a) Using this custom control in a XAML file that exists in the current project.
/// Add this XmlNamespace attribute to the root element of the markup file where it is
/// to be used:
///
/// xmlns:MyNamespace="clr-namespace:CommandoDash"
///
///
/// Step 1b) Using this custom control in a XAML file that exists in a different project.
/// Add this XmlNamespace attribute to the root element of the markup file where it is
/// to be used:
///
/// xmlns:MyNamespace="clr-namespace:CommandoDash;assembly=CommandoDash"
///
/// You will also need to add a project reference from the project where the XAML file lives
/// to this project and Rebuild to avoid compilation errors:
///
/// Right click on the target project in the Solution Explorer and
/// "Add Reference"->"Projects"->[Browse to and select this project]
///
///
/// Step 2)
/// Go ahead and use your control in the XAML file.
///
/// <MyNamespace:CustomControl1/>
///
/// </summary>
public class StatusTextBlock : TextBox
{
//IsActive Property
public static readonly DependencyProperty IsActiveProperty = DependencyProperty.Register(
"IsActive", typeof(bool),
typeof(TextBox)
);
public bool IsActive
{
get { return (bool)GetValue(IsActiveProperty); }
set { SetValue(IsActiveProperty, value); }
}
//ActiveBrush Property
public static readonly DependencyProperty ActiveBrushProperty = DependencyProperty.Register(
"ActiveBrush", typeof(Brush),
typeof(TextBox)
);
public Brush ActiveBrush
{
get { return (Brush)GetValue(ActiveBrushProperty); }
set { SetValue(ActiveBrushProperty, value); }
}
//InactiveBrush Property
public static readonly DependencyProperty InactiveBrushProperty = DependencyProperty.Register(
"InactiveBrush", typeof(Brush),
typeof(TextBox)
);
public Brush InactiveBrush
{
get { return (Brush)GetValue(InactiveBrushProperty); }
set { SetValue(InactiveBrushProperty, value); }
}
}
}