TextBlockとPopUpの2つのコントロールがあります。ユーザーがテキストブロックで(MouseDown)をクリックすると、ポップアップが表示されます。 PopupでEventTriggerを使用してこれを実行できると思いますが、EventTriggerでセッターを使用することはできません。ストーリーボードのみを開始できます。 XAMLでこれを厳密に行いたいのは、2つのコントロールがテンプレート内にあり、コード内でポップアップをどのように見つけるかわからないためです。
これは概念的に私がやりたいことですが、(DataTriggerでできるように)EventTriggerにセッターを置くことができないためできません:
<TextBlock x:Name="CCD">Some text</TextBlock>
<Popup>
<Popup.Style>
<Style>
<Style.Triggers>
<EventTrigger SourceName="CCD" RoutedEvent="MouseDown">
<Setter Property="Popup.IsOpen" Value="True" />
</EventTrigger>
</Style.Triggers>
</Style>
</Popup.Style>
...
別のコントロールでイベントが発生したときにXAMLで厳密にポップアップを表示する最良の方法は何ですか?
簡単なことをしましたが、うまくいきます。
コントロールテンプレートを変更して、テキストブロックとしてスタイルを変更した典型的なトグルボタンを使用しました。次に、トグルボタンのIsCheckedプロパティをポップアップのIsOpenプロパティにバインドしました。ポップアップには、閉じる動作を変更できるStaysOpenなどのプロパティがあります。
以下はXamlPadで機能します。
<StackPanel>
<ToggleButton Name="button">
<ToggleButton.Template>
<ControlTemplate TargetType="ToggleButton">
<TextBlock>Click Me Here!!</TextBlock>
</ControlTemplate>
</ToggleButton.Template>
</ToggleButton>
<Popup IsOpen="{Binding IsChecked, ElementName=button}" StaysOpen="False">
<Border Background="LightYellow">
<TextBlock>I'm the popup</TextBlock>
</Border>
</Popup>
</StackPanel>
次のアプローチはHelge Kleinのアプローチと同じです。ただし、ポップアップの外側(トグルボタン自体を含む)をクリックするとポップアップが自動的に閉じます。
<ToggleButton x:Name="Btn" IsHitTestVisible="{Binding ElementName=Popup, Path=IsOpen, Mode=OneWay, Converter={local:BoolInverter}}">
<TextBlock Text="Click here for popup!"/>
</ToggleButton>
<Popup IsOpen="{Binding IsChecked, ElementName=Btn}" x:Name="Popup" StaysOpen="False">
<Border BorderBrush="Black" BorderThickness="1" Background="LightYellow">
<CheckBox Content="This is a popup"/>
</Border>
</Popup>
「BoolInverter」はIsHitTestVisibleバインディングで使用されるため、トグルボタンを再度クリックすると、ポップアップが閉じます。
public class BoolInverter : MarkupExtension, IValueConverter
{
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is bool)
return !(bool)value;
return value;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return Convert(value, targetType, parameter, culture);
}
}
...これは IValueConverterとMarkupExtensionを組み合わせた の便利なテクニックを1つに示しています。
この手法には1つの問題があります。2つのポップアップが同時に画面に表示されると、WPFにバグが発生します。具体的には、トグルボタンがツールバーの「オーバーフローポップアップ」にある場合、クリックすると2つのポップアップが開きます。その後、ウィンドウの他の場所をクリックすると、2番目のポップアップ(ポップアップ)が開いたままになることがあります。その時点で、ポップアップを閉じることは困難です。ポップアップが開いているためIsHitTestVisibleがfalseであるため、ユーザーは再度トグルボタンをクリックしてポップアップを閉じることができません!私のアプリでは、この問題を軽減するためにいくつかのハックを使用する必要がありました。たとえば、メインウィンドウでの次のテストでは(Louis Blackの声で) Friggin 'ポップアップを閉じます。」:
PreviewMouseDown += (s, e) =>
{
if (Popup.IsOpen)
{
Point p = e.GetPosition(Popup.Child);
if (!IsInRange(p.X, 0, ((FrameworkElement)Popup.Child).ActualWidth) ||
!IsInRange(p.Y, 0, ((FrameworkElement)Popup.Child).ActualHeight))
Popup.IsOpen = false;
}
};
// Elsewhere...
public static bool IsInRange(int num, int lo, int hi) =>
num >= lo && num <= hi;
どうですか:
<Button x:Name="OpenPopup">Popup
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<BooleanAnimationUsingKeyFrames
Storyboard.TargetName="ContextPopup"
Storyboard.TargetProperty="IsOpen">
<DiscreteBooleanKeyFrame KeyTime="0:0:0" Value="True" />
</BooleanAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</Button.Triggers>
</Button>
<Popup x:Name="ContextPopup"
PlacementTarget="{Binding ElementName=OpenPopup}"
StaysOpen="False">
<Label>Popupcontent...</Label>
</Popup>
Popup
はButton
を名前で参照しており、その逆も同様です。そう x:Name="..."
は、Popup
とButton
の両方で必要です。
Storyboard
をカスタムのSetProperty
EventTriggerアクションで置き換えることにより、実際にさらに簡略化できます in this SO Answer
これのMouseDown部分にいくつかの問題がありましたが、ここから始めるかもしれないいくつかのコードがあります。
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<Control VerticalAlignment="Top">
<Control.Template>
<ControlTemplate>
<StackPanel>
<TextBox x:Name="MyText"></TextBox>
<Popup x:Name="Popup" PopupAnimation="Fade" VerticalAlignment="Top">
<Border Background="Red">
<TextBlock>Test Popup Content</TextBlock>
</Border>
</Popup>
</StackPanel>
<ControlTemplate.Triggers>
<EventTrigger RoutedEvent="UIElement.MouseEnter" SourceName="MyText">
<BeginStoryboard>
<Storyboard>
<BooleanAnimationUsingKeyFrames Storyboard.TargetName="Popup" Storyboard.TargetProperty="(Popup.IsOpen)">
<DiscreteBooleanKeyFrame KeyTime="00:00:00" Value="True"/>
</BooleanAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
<EventTrigger RoutedEvent="UIElement.MouseLeave" SourceName="MyText">
<BeginStoryboard>
<Storyboard>
<BooleanAnimationUsingKeyFrames Storyboard.TargetName="Popup" Storyboard.TargetProperty="(Popup.IsOpen)">
<DiscreteBooleanKeyFrame KeyTime="00:00:00" Value="False"/>
</BooleanAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Control.Template>
</Control>
</Grid>
</Window>
別の方法:
<Border x:Name="Bd" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}" SnapsToDevicePixels="true">
<StackPanel>
<Image Source="{Binding ProductImage,RelativeSource={RelativeSource TemplatedParent}}" Stretch="Fill" Width="65" Height="85"/>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
<Button x:Name="myButton" Width="40" Height="10">
<Popup Width="100" Height="70" IsOpen="{Binding ElementName=myButton,Path=IsMouseOver, Mode=OneWay}">
<StackPanel Background="Yellow">
<ItemsControl ItemsSource="{Binding Produkt.SubProducts}"/>
</StackPanel>
</Popup>
</Button>
</StackPanel>
</Border>