3
有誰知道一個簡單的XAML解決方案來改變ToolTip
的整個背景嗎?整個工具提示的Backgroundcolor
我做了以下內容:
<Image Height="16" Source="Images/Icons/Add2.png" Stretch="Fill" Width="16" Opacity="0.99" Grid.Column="0">
<Image.ToolTip>
<Grid Background="#000000">
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock Text="Header1" FontSize="15" Grid.Row="0"/>
<TextBlock Text="Subitem" FontSize="12" Grid.Row="1"/>
</Grid>
</Image.ToolTip>
</Image>
但結果看起來像這樣:
有什麼建議?
我不確定你在這裏問什麼。你將背景設置爲黑色(#000000 =黑色),它是黑色的...... – Tim
當然,但是在黑色區域左側還有一個灰色部分。 對我來說,它看起來像:全部GraySection - > GraySection中的較小BlackArea – user1011394
@Tim說過的話,它看起來像你想要的[StackPanel](http://wpftutorial.net/StackPanel.html) –