![]() |
Platforms, Frameworks & Libraries »
Windows Presentation Foundation »
General
Beginner
License: The Code Project Open License (CPOL)
WPF Common TaskDialog for Vista and XPBy Karl ShifflettWPF Custom TaskDialog that renders the same on Vista and XP. This custom dialog simplifies programming by providing a simple interface for developers that is not operating system dependent. This solution does not use the Windows API for rendering. |
C# (C# 3.0), VB (VB 8.0, VB 9.0), .NET (Mono, .NET 3.0, .NET 3.5), XAML, WPF, Architect, Dev
|
||||||||||
|
Advanced Search |
|
|
||||||||||||||||||
This article covers an important topic, dialog boxes. With the release of Vista also came the cool TaskDialog that all Vista users are getting used to. It provides a richer dialog than the standard message box dialog available on Windows XP.
However, this great new feature causes a minor bump in the carpet for WPF developers. Which dialog should WPF developers use? Should WPF developers customize their dialogs for each operating system? What about application documentation? Should documentation have to cover two flavors of every dialog box? The TaskDialog clearly provides for much more information than the message box, so what to do?
This is the very question that tapped on my shoulder about three months ago. So I developed a custom dialog class that works on both Vista and XP. It looks just like Vista�s TaskDialog, yet without all the messy API business. (Microsoft, please add TaskDialog to the 3.6 Framework so we WPF developers do not need to fool with the Windows API and so that it can be an operating system independent feature.) If you�re interested in looking at the Windows API TaskDialog code, you can have a look at the VistaBridge application in the Windows Vista SDK.
We will look at some dialog usage examples and then have a look at some of the code.
For demonstration purposes, I have provided an image and corresponding code used to open the dialog.
Vista Version
Windows XP Version

Dim obj As New CommonDialog.CustomDialog
obj.AdditionalDetailsText = "These are additional details"
obj.Buttons = CommonDialog.CustomDialogButtons.OKCancel
obj.ButtonsDisabledDelay = 5
obj.Caption = "The buttons are disabled for 5 seconds"
obj.DefaultButton = CommonDialog.CustomDialogResults.OK
obj.FooterIcon = CommonDialog.CustomDialogIcons.Information
obj.FooterText = "This is the footer text"
obj.InstructionHeading = "This is the instruction heading"
obj.InstructionIcon = CommonDialog.CustomDialogIcons.Question
obj.InstructionText = "Do you want to proceed with the next task?"
'show the dialog and get the result
Dim objResults As CommonDialog.CustomDialogResults = obj.Show
The above image was captured after the delay timer had completed and the user had clicked "See Details" which exposed the AdditionalDetailsText information.
Comparing the two images with the CommonDialog.CustomDialog properties makes it very easy to see where each property is displayed.
You can also see how the dialog will look on a Windows XP system.
Allow me to touch on the ButtonsDisabledDelay property. Many times our beloved users are quick on the keyboard or mouse and just click through important dialog boxes. They tend to tell customer support, "I never saw that box!" For those users (I can smell a new user profile setting), or for very important dialog boxes, the ButtonsDisabledDelay property was added. Assign how many seconds you want the buttons to be disabled before the user can respond to the dialog box. Since this dialog can't be closed with the little red X or by pressing ALT-F4, your user will have plenty of time to actually read and digest the information you are trying to communicate. Just don't get to crazy with the delay feature.
Dim obj As New CommonDialog.CustomDialog
obj.Buttons = CommonDialog.CustomDialogButtons.YesNoCancel
obj.Caption = "Standard Dialog - default button No"
obj.DefaultButton = CommonDialog.CustomDialogResults.No
obj.InstructionHeading = "This is the instruction heading"
obj.InstructionIcon = CommonDialog.CustomDialogIcons.Question
obj.InstructionText = "Do you want to proceed with the next task?"
'show the dialog and get the result
Dim objResults As CommonDialog.CustomDialogResults = obj.Show
In this dialog, the DefaultButton has been set to No, the rest is very basic and standard.
Dim obj As New CommonDialog.CustomDialog
obj.AdditionalDetailsText = "Cool WPF dialog box!P"
obj.Buttons = CommonDialog.CustomDialogButtons.OK
obj.Caption = "Works with Vista and XP"
obj.DefaultButton = CommonDialog.CustomDialogResults.OK
obj.FooterIcon = CommonDialog.CustomDialogIcons.Shield
obj.FooterText = "This is a secure program"
obj.InstructionHeading = "Big Brother Is Watching"
obj.InstructionIcon = CommonDialog.CustomDialogIcons.Warning
obj.InstructionText = "Do you want to proceed with the next task?"
'show the dialog and get the result
Dim objResults As CommonDialog.CustomDialogResults = obj.Show
In this dialog, I've selected different icons and changed the text.
The only difference in the way this custom dialog renders is that on Vista, the dialog takes advantage of Aero Glass and if available uses it on the Window chrome. On XP, the custom dialog uses the system XP Window chrome.
The above CustomDialog class provides the public interface for the CommonDialog project. Consumers instantiate and set properties on this class and call the Show method to display the CustomDialogWindow. The CustomDialog class constructs the CustomDialogWindow and returns the result after logging the users dialog actions. (see optional logging feature below)
The CommonDialog.CustomDialog class provides a Private Sub LogDialog procedure that gets called when the user closes the dialog. By default this procedure has no code, since the actual implementation would be very specific to each users application and requirements. However, developers can very easily use this stub to provide rich dialog logging to their applications.
In addition to the properties used to construct the dialog, the users response, the following properties can also be logged:
CallingMethodName CallingModuleName CallingReflectedTypeName Public Function Show() As CustomDialogResults
'get the calling code information
Dim objTrace As System.Diagnostics.StackTrace = _
New System.Diagnostics.StackTrace()
If _strCallingReflectedTypeName.Length = 0 Then
_strCallingReflectedTypeName = _
objTrace.GetFrame(1).GetMethod.ReflectedType.Name
End If
If _strCallingMethodName.Length = 0 Then
_strCallingMethodName = objTrace.GetFrame(1).GetMethod.Name
End If
If _strCallingModuleName.Length = 0 Then
_strCallingModuleName = objTrace.GetFrame(1).GetMethod.Module.Name
End If
rest of the code...
The above code snippet shows how the CallingMethodName, CallingModuleName and CallingReflectedTypeName properties are populated. This information can be helpful to developers trying to troubleshoot an issue and the user was not sure what they did.
The VistaAeroAPI class allows developers to use Aero Glass in their WPF Windows. There are so many Internet examples of extending Aero Glass in C#, so I've included this class here which is written in VB.NET
Aero Glass is a feature of Windows Vista. So XP users do not have this feature. Additionally, Vista users can turn Aero Glass off. So, when using this feature in your applications, you must be able to handle XP and Aero-off situations.
Public Sub New(ByVal intButtonsDisabledDelay As Integer)
InitializeComponent()
If System.Environment.OSVersion.Version.Major < 6 Then
Me.AllowsTransparency = True
_bolAeroGlassEnabled = False
Else
_bolAeroGlassEnabled = True
End If
_intButtonsDisabledDelay = intButtonsDisabledDelay
End Sub
Protected Overrides Sub OnSourceInitialized(ByVal e As System.EventArgs)
MyBase.OnSourceInitialized(e)
'these two sections of code are different because the first one is dealing with XP
' so we need to change the Window a bit to make it look like the Vista Window
'
'
If _bolAeroGlassEnabled = False Then
'no aero glass - we are XP
Me.ResizeMode = Windows.ResizeMode.NoResize
Me.borderCustomDialog.Background = _
System.Windows.SystemColors.ActiveCaptionBrush
Me.tbCaption.Foreground = System.Windows.SystemColors.ActiveCaptionTextBrush
Me.borderCustomDialog.CornerRadius = New CornerRadius(10, 10, 0, 0)
Me.borderCustomDialog.Padding = New Thickness(4, 0, 4, 4)
Me.borderCustomDialog.BorderThickness = New Thickness(0, 0, 1, 1)
Me.borderCustomDialog.BorderBrush = System.Windows.Media.Brushes.Black
Else
'Vista is here. However, if the ExtendGlassFrame fails, we need a fallback
' plan to make our Window look good
'
'aero glass
If VistaAeroAPI.ExtendGlassFrame(Me, New Thickness(0, 25, 0, 0)) = False Then
'aero didn't work make window without glass
Me.borderCustomDialog.Background = _
System.Windows.SystemColors.ActiveCaptionBrush
Me.tbCaption.Foreground = _
System.Windows.SystemColors.ActiveCaptionTextBrush
Me.borderCustomDialog.Padding = New Thickness(4, 0, 4, 4)
Me.borderCustomDialog.BorderThickness = New Thickness(0, 0, 1, 1)
Me.borderCustomDialog.BorderBrush = System.Windows.Media.Brushes.Black
_bolAeroGlassEnabled = False
End If
End If
End Sub
The first logical step when working with the Aero Glass feature is to determine the operating system version. I have elected to perform this check in the constructor using this code, System.Environment.OSVersion.Version.Major < 6.
When using the Aero Glass feature you need to Override the Window OnSourceInitialized method and place your Aero Glass code here.
This is also the location to handle non-Aero or Aero-off scenarios. In the case of this application, I have coded the Window object, setting its properties, assuming that Aero Glass will be available and enabled. In the above code, if the operating system is XP, then a small amount of adjustments are necessary to make the dialog Window look the same or as close as possible to the Vista Aero dialog. Likewise, if the operating system is Vista and the Aero Glass feature is turned off, a few small adjustments are made to the Window object to make it look good even without Aero.
This is an important and necessary step when implementing Aero Glass in your WPF applications.
I have started a WPF Sample Series on my blog. I will be posting 3-6 WPF Sample Applications a month. I won't be posting every sample here on Code Project, but you can read still read them and download the code from my blog.
Hope this code helps someone learn a little more about WPF.
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 30 Dec 2007 Editor: |
Copyright 2007 by Karl Shifflett Everything else Copyright © CodeProject, 1999-2009 Web11 | Advertise on the Code Project |