我需要顯示氣球彈出窗口。 WPF中是否有這種工作的控制權? 類似以下內容:氣球彈出窗口WPF
<BalloonPopup>
<StackPanel>
<Button/>
. . .
</StackPanel>
</BalloonPopup>
這是可能的結果:
我需要顯示氣球彈出窗口。 WPF中是否有這種工作的控制權? 類似以下內容:氣球彈出窗口WPF
<BalloonPopup>
<StackPanel>
<Button/>
. . .
</StackPanel>
</BalloonPopup>
這是可能的結果:
你希望做一個tooltip。 wpf.200things上有很好的寫作。
從此article。你基本上會喜歡的樣式下面
<TextBox Text="Now is the winter of our discontent etc"
Width="100" Margin="10">
<TextBox.ToolTip>
<ToolTip DataContext="{Binding Path=PlacementTarget, RelativeSource={x:Static RelativeSource.Self}}">
<StackPanel>
<Label FontWeight="Bold" Content="Full Text"/>
<Label Content="{Binding Text}"/>
<Label Content="--Gloster, in Richard III (Act I, Scene I)"/>
</StackPanel>
</ToolTip>
</TextBox.ToolTip> </TextBox>
可能重複的[如何實現在WPF應用程序氣球消息(http://stackoverflow.com/questions/2310102/how-to-implement-balloon-message-in-a-wpf - 應用程序) –
@ReedCopsey在你的鏈接沒有答案... – Nick
實際上 - 所有這些都是有效的,但也有一個公認的答案(它只是沒有列出,因爲它是OP的解決方案) –