Is there any way to create user interface, that can show buttons like how windows media player shows it when minimized?

c#, wpf

Solution

Refer to ThumbButtonInfo class.

        <ThumbButtonInfo x:Name="btnUpdate"
                         ImageSource="{StaticResource IconUpdate}"
                         Description="Find updates for the application"
                         IsBackgroundVisible="True">
        </ThumbButtonInfo>
        <ThumbButtonInfo x:Name="btnClient"
                         ImageSource="{StaticResource IconClient}"
                         Description="Search Clients"
                         IsBackgroundVisible="True">
        </ThumbButtonInfo>
        <ThumbButtonInfo x:Name="btnInvoice"
                         ImageSource="{StaticResource IconInvoice}"
                         Description="Search Invoices"
                         IsBackgroundVisible="True">
        </ThumbButtonInfo>

Problem

Is there any way to create windows application in C#.NET, that can show buttons like how windows media player/Lync shows it when minimized and mouse over it? I am just curious about how that would be!

Original source