17
A
回答
42
使用此代碼:
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ed="http://schemas.microsoft.com/expression/2010/drawing"
x:Name="Window"
Title="MainWindow"
Width="640"
Height="480">
<Window.Resources>
<Style x:Key="{x:Type ToolTip}" TargetType="ToolTip">
<Setter Property="OverridesDefaultStyle" Value="true" />
<Setter Property="HasDropShadow" Value="True" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<ed:Callout Name="Border"
Width="{TemplateBinding Width}"
Height="{TemplateBinding Height}"
MinWidth="100"
MinHeight="30"
Margin="0,0,0,50"
AnchorPoint="0,1.5"
Background="{StaticResource LightBrush}"
BorderBrush="{StaticResource SolidBorderBrush}"
BorderThickness="1"
CalloutStyle="RoundedRectangle"
Fill="#FFF4F4F5"
FontSize="14.667"
Stroke="Black">
<ContentPresenter Margin="4"
HorizontalAlignment="Left"
VerticalAlignment="Top" />
</ed:Callout>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<Grid>
<Button ToolTip="Hello" />
</Grid>
這是開始時,現在你必須發揮它...享受!
+0
謝謝哈利。我還有一個問題:我應該爲xmlns添加一個程序集:ed =「http://schemas.microsoft.com/expression/2010/drawing」? – 2012-07-12 09:37:46
+7
是的,添加Microsoft.Expression.Drawing程序集。 – Harry 2012-07-12 09:46:27
+0
太棒了!輝煌的工作,絕對是一個投票 – 2012-08-02 19:04:55
0
相關問題
- 1. 圖像的隱藏的語音氣泡工具提示
- 2. 如何保持氣泡(工具提示)以進行編輯(javascript)
- 3. 谷歌氣泡圖如何添加HTML工具提示
- 4. Wpf工具提示樣式
- 5. WPF圖像工具提示
- 6. WP7圖釘提示/氣泡
- 7. d3js - 添加類似工具提示的語音氣泡?
- 8. 在CSS中更改工具提示氣泡大小
- 9. C#裏面有控件的氣泡工具提示?
- 10. 自定義Google Charts API中的氣泡圖工具提示
- 11. Sublime Text - Python - Docstrings和Linting消息的工具提示或氣泡
- 12. Highcharts - 分類氣泡圖共享工具提示
- 13. 使氣泡工具提示重疊其窗口邊緣
- 14. 自定義工具提示/氣泡在谷歌地圖V3
- 15. 如何在設計時讓WPF像Forms一樣工作?
- 16. Chart.js 2 - 總是隻顯示氣泡圖中的一些工具提示
- 17. wpf工具提示和樣式
- 18. 帶工具提示的Wpf TextBox樣式
- 19. 如何在Qt中創建工具提示爲泡泡盒?
- 20. 設置圖像的氣球工具提示
- 21. WPF BubbleSeries,遍歷氣泡並設置樣式
- 22. 設計一個像工具提示的自定義視圖
- 23. WPF - 設置工具提示MaxWidth
- 24. 如何禁用WPF工具提示?
- 25. 添加沒有span標籤或標題的工具提示/氣泡顯示
- 26. 我如何設計一個工具欄,使其像AppBar一樣工作吧
- 27. WPF中的工具提示氣球在哪裏?
- 28. ListViewItem工具提示WPF
- 29. WPF工具提示綁定
- 30. WPF工具提示定位
我遇到類似的問題,最近又傳出與製作兩個職位,我相信可以幫助:http://pmichaels.net/2016/04/01/tooltip-speech-bubbles/和http:// pmichaels.net/2016/04/08/creating-a-speech-bubble-with-rounded-corners/ – 2016-04-19 20:02:51