我使用扩增器控制来创建某种包含一些过滤选项的幻灯片退出面板。 用户可以选择将此扩展器锁定到视图中。 都进展顺利, 但现在我想知道当用户点击放大器之外的地方时, 我如何让扩展器自动关闭 。 我尝试了“ 丢失焦点” 和其他几个事件, 但没有成功。 当用户点击别处时, 哪个事件可以通知我?
(此时我只是在使用一个计时器, 该计时器在鼠标离开扩展器后 + - 2 秒后关闭扩展器, 但我更喜欢另一种解决办法)
提前感谢。
我使用扩增器控制来创建某种包含一些过滤选项的幻灯片退出面板。 用户可以选择将此扩展器锁定到视图中。 都进展顺利, 但现在我想知道当用户点击放大器之外的地方时, 我如何让扩展器自动关闭 。 我尝试了“ 丢失焦点” 和其他几个事件, 但没有成功。 当用户点击别处时, 哪个事件可以通知我?
(此时我只是在使用一个计时器, 该计时器在鼠标离开扩展器后 + - 2 秒后关闭扩展器, 但我更喜欢另一种解决办法)
提前感谢。
假设您的 Extander
被命名为“ your Extander” 您可以做到这一点 :
<Window PreviewMouseDown="Window_PreviewMouseDown"
如果 e. 原件来源
不是扩展器的子孙, 则关闭扩展器 :
private void Window_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
Visual visual = e.OriginalSource as Visual;
if (!visual.IsDescendantOf(yourExpander))
yourExpander.IsExpanded = false;
}
允许我的用户在鼠标超过其任何部分时自动扩展扩展器, 并关闭它, 否则, 我使用以下代码 :
在视图中,Model 添加一个菜单可视属性,一种近距Menu方法,一种开放Menu方法,以及2种信通; CloseExanderCommand和OpenExanderCommand
public class TripsViewModel : ViewModelBase
{
private bool _menuIsVisible;
public bool MenuIsVisible
{
get=>_menuIsVisible;
set
{
if (value == _menuIsVisible) { return;}
_menuIsVisible = value;
RaisePropertyChanged();
}
}
private void CloseExpander() { MenuIsVisible = false;}
private void OpenExpander() { MenuIsVisible = true;}
public ICommand CloseExpanderCommand { get; }
public ICommand OpenExpanderCommand { get; }
in your view: make sure you reference:
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
时当时
<Border >
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseEnter">
<i:InvokeCommandAction Command="{Binding OpenExpanderCommand}" />
</i:EventTrigger>
<i:EventTrigger EventName="MouseLeave">
<i:InvokeCommandAction Command="{Binding CloseExpanderCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<Expander Tag="Menu"
ExpandDirection="Right"
Header="Menu"
IsExpanded="{Binding MenuIsVisible}">
<StackPanel>
</StackPanel>
</Expander>
</Border>
事件触发器是魔法发生的地方
I have several geometry meshes in my Viewport3D, these have bounds of (w:1800, h:500, d:25). When a user clicks in the middle of the mesh, I want the Point3D of (900, 500, 25)... How can I achieve ...
Is it possible to edit a xaml icons or images in the expression design or using other tools? Is it possible to import a xaml images (that e.g you have exported) in the expression designer for editing?...
I am considering to write smoke tests for our WPF application. The question that I am faced is: should we use UI automation( or some other technology that creates a UI script), or is it good enough to ...
Im facing a bit of an issue when trying to validate a decimal property on domain object which is bound to a textbox on the view through the viewmodel. I am using NHibernate to decorate my property on ...
Certain markup extensions raise compile errors. For example StaticExtension (x:Static) raises a compile error if the referenced class cannot be found. Anyone know the mechanism for this? Is it baked ...
I ve got some code which sets up a datacontext. Often enough, the datacontext should be set to some underlying data collection, such as an ObservableCollection - but occasionally I d like to set it ...
I am trying to create a custom wpf control, I m wondering how I can add some design-time features. I ve googled and can t seem to get to my goal. So here s my simple question, how can I add an entry ...
NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...