This is a migrated thread and some comments may be shown as answers.

Dragon speech recognition for RadComboBox

1 Answer 146 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Benji
Top achievements
Rank 1
Benji asked on 16 Apr 2018, 10:28 PM

I'm not able to get Dragon select drop-down options.

 <telerik:RadComboBox Grid.Row="5" Grid.Column="1" Padding="1" Grid.ColumnSpan="3" Name="SearchComboBox"                               
                                AutomationProperties.Name="Search:"
                                MaxHeight="20"
                                MinWidth="270"
                                VerticalAlignment="Center"
                                IsEditable="True"
                                IsReadOnly="False"
                                CanAutocompleteSelectItems="False"
                                CanKeyboardNavigationSelectItems="False"
                                IsTextSearchEnabled="False"
                                StaysOpenOnEdit="False"
                                OpenDropDownOnFocus="False"
                                IsMouseWheelEnabled="True"
                                MaxDropDownHeight="200"
                                Focusable="True"
                                IsTabStop="True"
                                TabIndex="101"         
                                ItemTemplate="{StaticResource GridLikeDataTemplate}"
                                TextBoxStyle="{StaticResource CustomComboTextBoxStyle}"
                                ItemsSource="{Binding List}"
                                KeyDown="General_KeyDown"
                                ScrollViewer.ScrollChanged="SearchCombo_ScrollChanged"
                                TextBoxBase.TextChanged="SearchCombo_TextChanged"
                                SelectionChanged="SearchCombo_SelectionChanged" >
                                <!--<telerikPresentation:RadComboBox.ItemContainerStyle>
                                    <Style TargetType="{x:Type telerikPresentation:RadComboBoxItem}">
                                        <Setter Property="AutomationProperties.Name" Value="{Binding Name}"/>
                                    </Style>
                                </telerikPresentation:RadComboBox.ItemContainerStyle>-->

                            </telerik:RadComboBox>

Template:

   <DataTemplate x:Key="GridLikeDataTemplate">
                                <DockPanel DataContext="{Binding}">
                                    <TextBlock Width="150" DockPanel.Dock="Right" Foreground="Gray" Text="{Binding TypeName}" Margin="0,0,15,0" />
                                    <TextBlock Text="{Binding Name}" FontWeight="Bold" Margin="0,0,20,0" AutomationProperties.Name="{Binding Name}"/>
                                </DockPanel>
                            </DataTemplate>

 

I used Inspect.exe and verified that the "Name" property was set propertly, but Click <PROPERTY NAME> is not working.  Please let me know if there is anything I missed. Thank you in advance. 

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 19 Apr 2018, 12:55 PM
Hi Binyam,

Thank you for your interest in our RadComboBox control.

We haven't tested the Dragon speech recognition software with our controls. We can't confirm that if our controls will work as expected with this software. 

Our UI for WPF suite support UI Automation. It seems that this software works with UI Automation. If you are able to reproduce this behavior in a stand-alone project without using Dragon software, we will further investigate this on our side.

Regards,
Dinko
Progress Telerik
Want to extend the target reach of your WPF applications, leveraging iOS, Android, and UWP? Try UI for Xamarin, a suite of polished and feature-rich components for the Xamarin framework, which allow you to write beautiful native mobile apps using a single shared C# codebase.
Tags
ComboBox
Asked by
Benji
Top achievements
Rank 1
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or