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

RadWindow + RadToolBar + RadComboBox. RadComboBox not working

2 Answers 104 Views
Window
This is a migrated thread and some comments may be shown as answers.
Sergey
Top achievements
Rank 1
Sergey asked on 04 Oct 2011, 09:34 AM
<telerik:RadWindow x:Class="RadToolBar.View"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d"
             d:DesignHeight="300" d:DesignWidth="550">
    <Grid>
        <StackPanel>
                <telerik:RadToolBar>
                    <telerik:RadComboBox Name="graphModes" Width="250" Height="22" Margin="3">
                        <ComboBoxItem>One</ComboBoxItem>
                        <ComboBoxItem>Two</ComboBoxItem>
                        <ComboBoxItem>Three</ComboBoxItem>
                     </telerik:RadComboBox>
                </telerik:RadToolBar>
        </StackPanel>
    </Grid>
</telerik:RadWindow>

If using normal Window - all working nice. But i want use RadWindow!

2 Answers, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 05 Oct 2011, 12:31 PM
Hi Sergey,

We were able to fix this problem. The fix will be available in the next internal build. Currently you could use the following work-around:

this.Loaded += (s, e) =>
    {
        var window = this.ParentOfType<Window>();
        window.Focusable = true;
        window.IsTabStop = false;
    };
where this is the instance of the View, which inherits from the RadWindow control.

Hope this helps.

All the best,
Miroslav Nedyalkov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

0
Sergey
Top achievements
Rank 1
answered on 05 Oct 2011, 01:34 PM
Hi, Miroslav.

Thank you, it working. We will waiting for the hot fix.
Tags
Window
Asked by
Sergey
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Sergey
Top achievements
Rank 1
Share this question
or