Nuance Dragon нажимает каждый ключ ускорителя - PullRequest
0 голосов
/ 06 января 2020

Почему Nuance Dragon Professional набирает клавиши ускорения в приведенном ниже примере приложения WPF?

Запустите код в VS, запустите Dragon и поместите курсор в текстовое поле, и окно начнет сходить с ума.

    <Grid>

            <Grid.RowDefinitions>
                <RowDefinition/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition/>
                <ColumnDefinition/>
                <ColumnDefinition/>
            </Grid.ColumnDefinitions>

            <Label Grid.Row="0" Grid.Column="0">Label:</Label>
            <TextBox x:Name="txtField" Grid.Row="0" Grid.Column="1" AcceptsReturn="True">Type Here</TextBox>
        <Label Grid.Row="0" Grid.Column="2" Target="{Binding ElementName=txtField}" AccessKeyManager.AccessKeyPressed="Label_AccessKeyPressed">_A</Label>

    </Grid>

и

        private void Label_AccessKeyPressed(object sender, AccessKeyPressedEventArgs e) {
            MessageBox.Show("You pressed the button!");
        }
...