我正在学习wpf和xaml。并且我想在单击cancil按钮时禁用日期选择器的显示。如何使用样式在XAML中实现这一点。因此,当单击红色的cancil按钮时,我想隐藏或禁用日期选择器。请帮帮我。
以下是我现在所拥有的
pd.merge_asof(trades, quotes, on='time')
答案 0 :(得分:1)
您可以在取消按钮中添加事件触发器:
<Button Name="btnCancel" Height="26" Width="26" DockPanel.Dock="Right" HorizontalAlignment="Right" ToolTip="Remove Action" Content="Cancel">
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<BooleanAnimationUsingKeyFrames Storyboard.TargetProperty="IsEnabled" Storyboard.TargetName="dtpCompleted">
<DiscreteBooleanKeyFrame KeyTime="0:0:0" Value="False"/>
</BooleanAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>