MahApps Metro Tile Icon未显示

use*_*114 1 vb.net wpf mahapps.metro

目前我正在使用MahApps.Metro样式UI设计WPF应用程序.由MahApps提供的平铺控制无法在平铺中心显示图标

我在MahApps网站上看到了可以将图像显示为图块背景的示例,但我无法弄清楚如何显示图标而不是图像(图标,如IE徽标,人物徽标,地图徽标等)

如果有人能告诉我怎么做,我很感激

谢谢

use*_*114 5

我明白了

使用icons.xaml作为资源,并在tile中添加矩形控件,下面是如何在tile控件中显示字符的示例

<Controls:Tile x:Name="mahTileExit"  Background="Green"   Foreground="Yellow"   Title="Exit" Width="100" Height="100" TiltFactor ="4" Margin="936,404,0,0" VerticalAlignment="Top" HorizontalAlignment="Left">
                <Rectangle Fill="White" Height="45" Width="45">
                    <Rectangle.OpacityMask>
                        <VisualBrush Visual="{StaticResource appbar_door_leave}" Stretch="Fill" />
                    </Rectangle.OpacityMask>
                </Rectangle>
        </Controls:Tile>
Run Code Online (Sandbox Code Playgroud)

谢谢,如果有人注意到这一点,希望可以帮助贡献