WPF 中的 Macbook 等图像图标
我正在寻找非常简单的用户界面;屏幕底部有三个图像图标。当用户将鼠标悬停在该图像图标上时,它会弹出并变得比没有鼠标悬停在图像上时的正常尺寸更大。
与 Mac 完全相同,它们在底部有图标列表,当您将鼠标悬停在一个图标上时,它会突出显示,当您单击它时,它会打开相应的应用程序...
我如何在 WPF C# 中执行此操作?
或者您是否可以引导我查看现有的示例/代码等?
谢谢
I am looking for very simple UI; with three Image Icons on Bottom of the screen. And when user hovers over that Image Icon it pops out and come bigger then normal size when no mouse over the Image.
Exactly like Mac where they have list of Icons on the bottom and when you hover over one Icon it stands out and when you click on it it opens respective application...
How can I do this in WPF C# ?
Or if you can direct me to existing example/code etc ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在WPF 中寻找
鱼眼效果
。这是来自 CodeProject 的一篇好文章:
FishEyePanel/FanPanel - WPF 中的自定义布局面板示例
You are looking for
Fish Eye Effect
in WPF.Here is a good article from CodeProject:
FishEyePanel/FanPanel - Examples of custom layout panels in WPF
我写了这个用户控件来模仿Mac的仪表板(鱼眼效果)。
I wrote this user control that would mimic the dashboard of the Mac's (Fish eye effect).