Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

wpf

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?

enter image description here

I am just curious about how that would be!

like image 295
Prasanna Avatar asked Feb 18 '23 01:02

Prasanna


1 Answers

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>
like image 102
David Avatar answered May 03 '23 06:05

David