作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将 Icommand 绑定(bind)到 xctk:IntegerUpDown 的事件。事件是“LostMouseCapture”
在 XAML 中:
<xctk:IntegerUpDown Name="MinColor" ClipValueToMinMax="True" Grid.Column="2"
Minimum="0" Maximum="{Binding Path=MinColorMaxValue}" Value="{Binding Path=MinColorValue}" Increment="1"
PreviewTextInput="IntegerUpDown_PreviewTextInput" DataObject.Pasting="IntegerUpDown_Pasting" PreviewKeyDown="IntegerUpDown_PreviewKeyDown" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="LostMouseCapture">
<i:InvokeCommandAction Command="{Binding Path=ValueCommand}" CommandParameter="{Binding FileName}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</xctk:IntegerUpDown>
private DelegateCommand m_ValueCommand = null;
public ICommand ValueCommand
{
get
{
if (m_ValueCommand == null)
m_ValueCommand = new DelegateCommand(new Action<object>(ExecuteValueCommand),
new Predicate<object>(CanExecuteValueCommand));
return m_ValueCommand;
}
}
public bool CanExecuteValueCommand(object sender)
{
return true;
}
public void ExecuteValueCommand(object sender)
{
}
最佳答案
从您的 MinColorValue
的 setter 中调用您的命令源属性:
private int _minColorValue;
public int MinColorValue
{
get { return _minColorValue; }
set
{
_minColorValue = value;
ValueCommand.Execute(FileName);
}
}
LostKeyboardFocus
或
LostFocus
事件:
<i:EventTrigger EventName="LostKeyboardFocus">
关于wpf - 将命令绑定(bind)到 xctk :IntegerUpDown 的 'LostMouseCapture' 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45632832/
我想将 Icommand 绑定(bind)到 xctk:IntegerUpDown 的事件。事件是“LostMouseCapture” 在 XAML 中:
我是一名优秀的程序员,十分优秀!