-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWPFMessageBoxControl.cs
78 lines (73 loc) · 2.86 KB
/
WPFMessageBoxControl.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
using System.Windows.Automation.Peers;
namespace MessageBoxUtils
{
/// <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:WPFMessageBox"
///
///
/// 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:WPFMessageBox;assembly=WPFMessageBox"
///
/// 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"->[Select this project]
///
///
/// Step 2)
/// Go ahead and use your control in the XAML file.
///
/// <MyNamespace:CustomControl1/>
///
/// </summary>
[TemplatePart(Name = "PART_YesButton", Type = typeof(Button))]
[TemplatePart(Name = "PART_NoButton", Type = typeof(Button))]
[TemplatePart(Name = "PART_OkButton", Type = typeof(Button))]
[TemplatePart(Name = "PART_CancelButton", Type = typeof(Button))]
public class WPFMessageBoxControl : Control
{
static WPFMessageBoxControl()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(WPFMessageBoxControl), new FrameworkPropertyMetadata(typeof(WPFMessageBoxControl)));
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
YesButton = base.GetTemplateChild("PART_YesButton") as Button;
NoButton = base.GetTemplateChild("PART_NoButton") as Button;
OkButton = base.GetTemplateChild("PART_OkButton") as Button;
CancelButton = base.GetTemplateChild("PART_CancelButton") as Button;
}
internal Button YesButton { get; set; }
internal Button NoButton { get; set; }
internal Button OkButton { get; set; }
internal Button CancelButton { get; set; }
protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer()
{
return new WPFMessageBoxControlAutomationPeer(this);
}
}
}