InputPaneVisibilityEventArgs.EnsuredFocusedElementInView 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
标识应用程序是否已采取措施确保输入窗格不会覆盖具有焦点的 UI 元素。
public:
property bool EnsuredFocusedElementInView { bool get(); void set(bool value); };
bool EnsuredFocusedElementInView();
void EnsuredFocusedElementInView(bool value);
public bool EnsuredFocusedElementInView { get; set; }
var boolean = inputPaneVisibilityEventArgs.ensuredFocusedElementInView;
inputPaneVisibilityEventArgs.ensuredFocusedElementInView = boolean;
Public Property EnsuredFocusedElementInView As Boolean
属性值
Boolean
bool
如果应用程序已确保输入窗格未覆盖具有焦点的 UI 元素,则为 True;否则为 false。
注解
如果此属性为 false,Windows 将确保输入窗格不会覆盖焦点元素。
如果执行该操作以确保未覆盖焦点元素,请确保将此属性设置为 true,以防止 Windows 尝试执行相同的工作;否则,结果可能是不可预知的。