LosingFocusEventArgs.TrySetNewFocusedElement(DependencyObject) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试将焦点从目标元素重定向到指定的元素。
public:
virtual bool TrySetNewFocusedElement(DependencyObject ^ element) = TrySetNewFocusedElement;
bool TrySetNewFocusedElement(DependencyObject const& element);
public bool TrySetNewFocusedElement(DependencyObject element);
function trySetNewFocusedElement(element)
Public Function TrySetNewFocusedElement (element As DependencyObject) As Boolean
参数
- element
- DependencyObject
要设置焦点的对象。
返回
Boolean
bool
如果重定向焦点操作,则为 True;否则为 false。
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|
注解
GotFocus 路由事件在获得焦点后在元素上引发,而 LostFocus 路由事件在元素失去焦点后在元素上引发。
GettingFocus 和 LosingFocus 路由事件在焦点更改发生之前发生,这使应用程序能够修改或取消焦点更改行为。
GettingFocus 和 LosingFocus 是同步引发的,而 GotFocus 和 LostFocus 是异步引发的。 例如,如果你的应用调用控件的 Focus 方法,则 GettingFocus 在调用期间引发,但在调用完成后会引发 GotFocus 。
如果在这些事件仍在冒泡时移动焦点,则会引发异常。