Windows 10触摸屏中的组合框闪烁

时间:2018-07-16 06:42:01

标签: wpf combobox windows-10 touch flicker

我在Wpf应用程序中使用了WPF组合框。
以下是我的问题场景:
1.触摸打开组合框
2.触摸下拉列表中的任何项目
3.组合框下拉列表闪烁后关闭。
单击鼠标不存在此问题。
我为Windows创建了AllowsTransparency =“ True”

系统规格: 1.Windows 10
2.Visual Studio 2017
3.在“笔和触摸”设置中未选中“启用并按住以右键单击”

以下是我的Xaml.code:

<Window x:Class="WpfApp1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp1"
        mc:Ignorable="d" WindowState="Maximized" WindowStyle="None"
        Title="MainWindow" Height="800" Width="800" Background="Transparent" AllowsTransparency="True">
    <Grid>
        <ComboBox Name="cb" Height="50" Width="50">
            <ComboBoxItem>A</ComboBoxItem>
            <ComboBoxItem>B</ComboBoxItem>
            <ComboBoxItem>C</ComboBoxItem>
            <ComboBoxItem>D</ComboBoxItem>
            <ComboBoxItem>E</ComboBoxItem>
            <ComboBoxItem>F</ComboBoxItem>
            <ComboBoxItem>G</ComboBoxItem>
        </ComboBox>
    </Grid>
</Window>

请帮助

0 个答案:

没有答案