我刚刚开始学习 C# 和 WP 平台,我发现做一些简单的事情真的很难,比如更改按钮图标等。
我在 XAML 中创建了一个命令栏和一个 AppBarButton。
<Page.BottomAppBar>
<CommandBar MinHeight="60">
<AppBarButton x:Name="Command_BarButton" Icon="AllApps"
Label="Seletie"
Click="AppBar_Select"/>
</CommandBar>
</Page.BottomAppBar>
我想在 C# 中以编程方式将 AppBarButton 图标更改为另一个现有图标,例如垃圾箱图标。我怎样才能做到这一点 ?
Command_BarButton.Label = "Delete";
Command_BarButton.Icon = ?