私は 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 = ?