デバッガもどきを作ろうとして挫折しました。後で使い回すかもしれないので、ボタンのXAMLを貼っておきます。画像ファイルを用意しなくてもアイコンが作れるのが新鮮でした。
<StackPanel Orientation="Horizontal" Height="22"> <Button x:Name="Run" Width="22"> <Polygon Fill="Black" Points="0,0,5,5,0,10" /> </Button> <Button x:Name="Pause" Width="22"> <Grid Width="8"> <Rectangle Fill="Black" Width="3" Height="8" HorizontalAlignment="Left" /> <Rectangle Fill="Black" Width="3" Height="8" HorizontalAlignment="Right" /> </Grid> </Button> <Button x:Name="Stop" Width="22"> <Rectangle Fill="Black" Width="8" Height="8" /> </Button> </StackPanel>