简体   繁体   中英

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

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!

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM