Is there a way to create a user interface that can display buttons such as, for example, as shown by the Windows media player while minimizing?

Is there a way to create a Windows application in C # .NET that can show buttons, for example, how does Windows Media Player / Lync show this when minimized and hovering over it?

enter image description here

I'm just wondering how it will be!

+4
source share
1 answer

Refer to the 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> 
+8
source

All Articles