Click here to Skip to main content
15,884,986 members
Articles / Desktop Programming / WPF

WPF: Integrating Our Application with the Windows 7 Taskbar (II)

Rate me:
Please Sign up or sign in to vote.
4.63/5 (6 votes)
3 Aug 2010CPOL7 min read 27.2K   473   17  
Let your user interact with your application using the new features of the Windows 7 Taskbar
Public Class ViewModel
    Private _UpdateCommand As UpdateCommand = New UpdateCommand()
    Private _ClientCommand As ClientCommand = New ClientCommand()
    Private _InvoiceCommand As InvoiceCommand = New InvoiceCommand()

    Public ReadOnly Property UpdateCommand As ICommand
        Get
            Return _UpdateCommand
        End Get
    End Property

    Public ReadOnly Property ClientCommand As ICommand
        Get
            Return _ClientCommand
        End Get
    End Property

    Public ReadOnly Property InvoiceCommand As ICommand
        Get
            Return _InvoiceCommand
        End Get
    End Property
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Freelance Developer
Spain Spain
MVP Windows Platform Development 2014
MVP Windows Phone Development 2013
MVP Windows Phone Development 2012

Comments and Discussions