Welcome Guest Search | Active Topics | Sign In | Register

Docking windows get behind WebControl Options
Trichas
Posted: Thursday, July 7, 2022 6:11:48 AM
Rank: Newbie
Groups: Member

Joined: 7/7/2022
Posts: 1
Hello, at the following code, docking windows "selectionNewTest" and "Search" get behind EO.WebControl.
Can enyone help.
Someone with the same issue.
Do i do something wrong?
Thank you in advance


Code: XML
<syncfusion:DockingManager UseDocumentContainer="True">
            <ContentControl x:Name="dockBottom" syncfusion:DockingManager.Header="Dock Bottom" syncfusion:DockingManager.State="Dock" syncfusion:DockingManager.SideInDockedMode="Bottom"/>
            <ContentControl x:Name="dockTabbed" syncfusion:DockingManager.Header="Dock Tabbed" syncfusion:DockingManager.State="Dock" syncfusion:DockingManager.SideInDockedMode="Tabbed" syncfusion:DockingManager.TargetNameInDockedMode="dockBottom"/>
            <ContentControl x:Name="selectionNewTest" syncfusion:DockingManager.Header="Auto Hidden" syncfusion:DockingManager.State="Dock" syncfusion:DockingManager.DesiredMinWidthInDockedMode="200" syncfusion:DockingManager.DesiredWidthInDockedMode="200" syncfusion:DockingManager.SideInDockedMode="Left">
                <StackPanel Name="stack1">
                    <ComboBox Name="selectNTBookCombo" SelectionChanged="selectNTBookCombo_SelectionChanged"/>
                    <ListBox Name="listBoxChaptersNT" SelectionMode="Single" ScrollViewer.VerticalScrollBarVisibility="Auto" MouseDoubleClick="listBoxChaptersNT_MouseDoubleClick" FontSize="14"/>
                </StackPanel>
            </ContentControl>
            <ContentControl x:Name="Search" syncfusion:DockingManager.Header="Αναζήτηση"  syncfusion:DockingManager.State="Dock" syncfusion:DockingManager.DesiredMinWidthInDockedMode="200" syncfusion:DockingManager.DesiredWidthInDockedMode="200" syncfusion:DockingManager.SideInDockedMode="Tabbed" 
                            syncfusion:DockingManager.TargetNameInDockedMode="selectionNewTest">
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="100" />
                        <RowDefinition Height="100" />
                    </Grid.RowDefinitions>
                    <StackPanel Grid.Row="0">
                        <RadioButton x:Name="SearchPolytonic" Style="{StaticResource {x:Type ToggleButton}}">Πολυτονικό</RadioButton>
                        <RadioButton x:Name="SearchMonotonic" Style="{StaticResource {x:Type ToggleButton}}">Μονοτονικό</RadioButton>
                    </StackPanel>
                    
                </Grid>
                
            </ContentControl>
            <ContentControl x:Name="document1" syncfusion:DockingManager.CanDocument="True" syncfusion:DockingManager.Header="Document1.xaml" syncfusion:DockingManager.State="Document">
                <EO:WebControl x:Name="webControl">
                    <EO:WebControl.WebView>
                        <EO:WebView x:Name="webView">
                            
                        </EO:WebView>
                    </EO:WebControl.WebView>
                </EO:WebControl>
                
            </ContentControl>



        </syncfusion:DockingManager>
eo_support
Posted: Thursday, July 7, 2022 5:24:26 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,217
This is a known WPF limitation where you can not have non-Windowed control placed over a Windowed control. EO.WebBrowser is a windowed control because the native browser engine must have its own window. This makes it impossible to place other non-Windowed control over it. So you would have to adjust your application design to avoid this situation. Sorry about it!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.