我想使用 Expression Blend (SketchFlow) 做一件非常简单的事情。
我想在屏幕上有一个按钮,当它被按下超过 3 秒时,它应该转到另一个屏幕。
我考虑过使用这个(绿色答案): Button Long Click
在 MouseLeftButtonDown 但我不知道如何使用 c# 代码更改到另一个屏幕......只需设置“导航到”选项。
因此,如果有人能告诉我如何在按钮中设置长按行为,以便它更改为新屏幕,那就太好了。
我想使用 Expression Blend (SketchFlow) 做一件非常简单的事情。
我想在屏幕上有一个按钮,当它被按下超过 3 秒时,它应该转到另一个屏幕。
我考虑过使用这个(绿色答案): Button Long Click
在 MouseLeftButtonDown 但我不知道如何使用 c# 代码更改到另一个屏幕......只需设置“导航到”选项。
因此,如果有人能告诉我如何在按钮中设置长按行为,以便它更改为新屏幕,那就太好了。
这是您可以使用的类似但更简单的类:
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Windows.Interactivity;
using System.Windows.Threading;
namespace SilverlightApplication14
{
public class LongClickButton : Button
{
public event EventHandler LongClick;
public static DependencyProperty HowLongProperty = DependencyProperty.Register("HowLong", typeof(double), typeof(LongClickButton), new PropertyMetadata(3000.0));
public double HowLong
{
get
{
return (double)this.GetValue(HowLongProperty);
}
set
{
this.SetValue(HowLongProperty, value);
}
}
private DispatcherTimer timer;
public LongClickButton()
{
this.timer = new DispatcherTimer();
this.timer.Tick += new EventHandler(timer_Tick);
}
private void timer_Tick(object sender, EventArgs e)
{
this.timer.Stop();
// Timer elapsed while button was down, fire long click event.
if (this.LongClick != null)
{
this.LongClick(this, EventArgs.Empty);
}
}
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
{
base.OnMouseLeftButtonDown(e);
this.timer.Interval = TimeSpan.FromMilliseconds(this.HowLong);
this.timer.Start();
}
protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
{
base.OnMouseLeftButtonUp(e);
this.timer.Stop();
}
}
}
有了这个,您可以使用 Blend 中的任何标准行为以及新的 LongClick 事件。将 HowLong 属性设置为所需的毫秒数(默认为 3000),然后使用设置为 LongClick 的事件触发器来触发导航:
<local:LongClickButton Margin="296,170,78,91">
<i:Interaction.Triggers>
<i:EventTrigger EventName="LongClick">
<ei:ChangePropertyAction PropertyName="Background" TargetName="LayoutRoot">
<ei:ChangePropertyAction.Value>
<SolidColorBrush Color="#FFFF1C1C"/>
</ei:ChangePropertyAction.Value>
</ei:ChangePropertyAction>
</i:EventTrigger>
</i:Interaction.Triggers>
</local:LongClickButton>