wpf 控件注意事项

2021-02-05 17:17

阅读:739

标签:direction   name   trigger   input   ops   cmd   注意   strust   ptime   

1.阴影


 

2.在Loaded中添加控件的按键事件,但对类似于Popup没有焦点的控件无效
private void Loaded(Popup obj)
{
obj.KeyDown += (sender, e) =>
{
if (e.Key == Key.Enter)
{
PopTimeClose(obj);
}
};
}

去掉聚焦是的虚线

父容器强制获取子项焦点FocusManager.FocusedElement="{Binding ElementName=btn}"

当为可聚焦性控件是可用如下Mouse+Enter事件

CommandParameter="{Binding ElementName=Pop_DailyExpenseInstrust1}"
Key="Enter"
Modifiers="Alt"/>

CommandParameter="{Binding ElementName=Pop_DailyExpenseInstrust1}"
MouseAction="RightClick"/>

 

textBox 按键事件




wpf 控件注意事项

标签:direction   name   trigger   input   ops   cmd   注意   strust   ptime   

原文地址:https://www.cnblogs.com/mamaxiaoling/p/11439322.html


评论


亲,登录后才可以留言!