我在将焦点设置到UserControl时遇到问题。我希望控件在被点击时获得焦点(指针按下事件)。
以下是控件:
<UserControl
x:Class="MyApp.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="100"
d:DesignWidth="160"
Canvas.ZIndex="10"
IsEnabled="True"
IsFocusEngagementEnabled="True"
AllowFocusOnInteraction="True"
UseSystemFocusVisuals="True">
...
</UserControl>
每当按下指针时,我在代码中调用this.Focus(FocusState.Pointer)。 但是该方法总是返回false(无法设置FocusState,它仍然存在 作为不专心)。如何将焦点设置为我的用户控件?
答案 0 :(得分:1)
尝试添加IsTapEnabled =&#34; True&#34; IsTabStop =&#34;真&#34;