Click here to Skip to main content
15,885,546 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
Class MainWindow 

    Private Sub btnUpdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        MessageBox.Show("Click on Update using events")
    End Sub

    Private Sub btnClient_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        MessageBox.Show("Click on Clients using events")
    End Sub

    Private Sub btnInvoice_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        MessageBox.Show("Click on invoice using events")
    End Sub
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