在某些计算机上,Internet Explorer中的松散XAML无响应。
对于以下代码:
ComboBox
上的空格不会显示下拉列表。Button
上的 Space 确实会以可视方式显示以执行点击。档案simple.xaml
:
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Label>Enabled:</Label>
<ComboBox>
<ComboBoxItem IsSelected="True">Yes</ComboBoxItem>
<ComboBoxItem>No</ComboBoxItem>
</ComboBox>
<Button>OK</Button>
</StackPanel>
这只发生在某些计算机上。在其他方面,控件完全响应。
我尝试过:Internet Explorer(没有插件),完全重置IE设置,确认在IE设置中启用了松散XAML,开发人员工具(没什么用),搜索Google。
为什么某些计算机上的松散XAML无法在Internet Explorer上响应?如何进一步调试此问题?