多くのアイテムを含むリストボックスがあります。項目にカーソルを合わせると、かなり「重い」ポップアップを表示する必要があります。各アイテムのポップアップをロードするのはリソースの無駄だと確信しているので、アイテムにカーソルを合わせたときにのみ、アイテム内の ContentControl のテンプレートを変更してポップアップを含めます。これは私がこれまでに持っているものです: (簡易版) (このコードは Kaxaml に貼り付けることができます)
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Page.Resources>
<ControlTemplate x:Key="WithPopup" TargetType="ContentControl">
<Grid>
<ContentPresenter Content="{TemplateBinding Content}" Name="Target" />
<Popup PlacementTarget="{Binding ElementName=Target}" IsOpen="True" >
<Border BorderBrush="Red" BorderThickness="1" Background="Pink">
<TextBlock Text="I'd like this to behave like a Popup - not a tooltip!" Margin="10" />
</Border>
</Popup>
</Grid>
</ControlTemplate>
</Page.Resources>
<Grid Height="20" Margin="50,50,0,0" Name="ParentGrid">
<ContentControl>
<TextBlock x:Name="TargetControl" Text="Hover over me!" />
<ContentControl.Style>
<Style TargetType="ContentControl">
<Style.Triggers>
<DataTrigger Binding="{Binding IsMouseOver, ElementName=TargetControl}" Value="True">
<Setter Property="Template" Value="{StaticResource WithPopup}" />
</DataTrigger>
</Style.Triggers>
</Style>
</ContentControl.Style>
</ContentControl>
</Grid>
</Page>
問題は、ポップアップを MouseOver しようとすると、マウスが元の ControlTemplate を離れているため (ツールチップのように) 消えてしまうことです。これにより、ポップアップのあるテンプレートが消えます。何か案は? 編集:これを達成するためにコードビハインドも利用できます(xamlの方が好きですが)