我有一个窗口,右侧有 4 个按钮。当我单击其中一个按钮时,我希望显示 4 个弹出窗口中的 1 个。我只完成了第一个几乎完成的任务,但我遇到了一个我似乎无法弄清楚的绊脚石。由于 4 个弹出窗口需要几乎相同,我决定为一个模板制作一个模板,ContentControl
然后在其中设置我的内容并将内容控件放在弹出窗口中。我的 ContentControl 模板中的一项是关闭按钮。我使用故事板将IsOpen
属性设置为 false。所以那部分有效。(这花了很长时间才弄清楚......)但是当我再次单击按钮打开相同的按钮时,Popup
它没有显示,我不知道为什么。这是我的 ContentControl 的模板
<Style x:Key="PopupContentStyle" TargetType="ContentControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ContentControl">
<Grid>
<Rectangle Fill="WhiteSmoke" Opacity=".50" Width="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}, Path=Width}" Height="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}, Path=Height}" />
<Button Height="50" Style="{DynamicResource CloseButton}" HorizontalAlignment="Right" VerticalAlignment="Top" >
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<BooleanAnimationUsingKeyFrames
Storyboard.Target="{Binding RelativeSource={RelativeSource AncestorLevel=1, AncestorType=Popup,Mode=FindAncestor}}"
Storyboard.TargetProperty="(Popup.IsOpen)" Duration="0:0:0">
<DiscreteBooleanKeyFrame KeyTime="0:0:0" Value="False" />
</BooleanAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
<ContentPresenter />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
虽然这并不重要,但这是我的Popup
风格:
<Style x:Key="PopupStyle" TargetType="{x:Type Popup}">
<Setter Property="AllowsTransparency" Value="True"/>
<Setter Property="PopupAnimation" Value="Fade"/>
<Setter Property="Placement" Value="Center"/>
<Setter Property="PlacementTarget" Value="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}"/>
</Style>
在我的UserControl
我有这个Popup
:
<Popup x:Name="popuptest" Opened="popuptest_Opened" Closed="popuptest_Opened" Style="{DynamicResource PopupStyle}" >
<ContentControl Style="{DynamicResource PopupContentStyle}">
<b:BrightnessControl />
</ContentControl>
</Popup>
我用来打开亮度按钮的代码并不复杂:
private void brightButton_Click(object sender, RoutedEventArgs e)
{
popuptest.IsOpen = true;
}
为了更好地衡量,我的 xaml 中的其他 2 个事件
public event PopupIsOpenedChangedHandler PopupIsOpenedChanged;
public delegate void PopupIsOpenedChangedHandler(bool isOpen);
private void OnPopupIsOpenedChanged(bool isOpen)
{
if (PopupIsOpenedChanged != null)
PopupIsOpenedChanged(isOpen);
}
private void popuptest_Opened(object sender, System.EventArgs e)
{
OnPopupIsOpenedChanged(popuptest.IsOpen);
}
请帮忙 :)。哦,我现在才使用 WPF 大约一个月,所以如果你看到一些我应该改变的东西,一定要建议它。谢谢你。