単一の画像のツールチップの前景色をどのように設定しますか?(ページには複数の画像コントロールがありますが、1つだけにスタイルを適用したいです)
アンドリュー
前景を設定するイメージに対して、次の xaml コードを追加します。
<Image Name="image1" Source="Untitled.png">
<Image.ToolTip>
<ToolTip Foreground="Red">
<StackPanel>
<TextBlock FontWeight="Bold">Submit Request</TextBlock>
<TextBlock>Submits the request to the server.</TextBlock>
</StackPanel>
</ToolTip>
</Image.ToolTip>
</Image>
Foreground="Red"は、その特定のツール ヒントの前景の色を設定します。
出力: