作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我看到我的 CheckBox
出现奇怪的行为及其焦点/选项卡顺序。
首先是一些“工作”代码:
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Button Grid.Row="0" Width="100" Height="25"/>
<TabControl Grid.Row="1" >
<!--TabItem Header="tabItem1" Name="tabItem1"-->
<TabItem Header="tabItem1" Name="tabItem1" FocusManager.IsFocusScope="True">
<ScrollViewer>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBox Grid.Row="0" />
<TextBox Grid.Row="1"/>
<CheckBox Grid.Row="2" Content="Test" />
<TextBox Grid.Row="3"/>
</Grid>
</ScrollViewer>
</TabItem>
</TabControl>
</Grid>
FocusManager.IsFocusScope="True"
一切正常。
最佳答案
这种行为在某种程度上是预料之中的。为了修复它,您可以在窗口上为 GotFocus 添加一个处理程序。
假设您的复选框名为 chkBox,如下所示:
protected override void OnGotKeyboardFocus(KeyboardFocusChangedEventArgs e)
{
base.OnGotKeyboardFocus(e);
if (e.Source == chkBox)
FocusManager.SetFocusedElement(this, chkBox);
}
关于wpf - 复选框失去焦点与 FocusManager.IsFocusScope ="True",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14275235/
我是一名优秀的程序员,十分优秀!