Web 指向スタイルのようなアプリケーション用のイメージ ボタンを作成する必要があります。20x20 ピクセルの画像があり、画像と同じサイズの画像ボタンが必要です。
これを xaml 内に設定しようとしましたが、機能しません:
<Button Grid.Row="0" Margin="0" Padding="0" Click="AddtoFavorite_Click" Width="20" Height="20" VerticalAlignment="Top" HorizontalAlignment="Right">
<Button.Content>
<Image Source="/MyNamespace;component/images/star_yellow.png" Margin="0" Width="20" Height="20" />
</Button.Content>
</Button>
なにが問題ですか?
解決
最良の解決策は次のとおりです。
<Image Source="/MyNamespace;component/images/star_yellow.png" ManipulationStarted="Image_ManipulationStarted" Width="20" Height="20"></Image>
ありがとうございます!