Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4024260
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:41:59+00:00 2026-05-20T10:41:59+00:00

If the ItemSource property of a combo box has been set, why could clicking

  • 0

If the ItemSource property of a combo box has been set, why could clicking on the drop down botton of a combobox not display the list of available items? This may be related but within the same control, any context menu is displayed behind the user control:

The XAML for this control is as follows:

 <Border Name="Border" Padding="5">
        <ScrollViewer VerticalScrollBarVisibility="Auto">
            <ScrollViewer.Resources>
                <Style TargetType="{x:Type CheckBox}">
                    <Setter Property="Padding" Value="8,0,0,0"/>
                    <Setter Property="VerticalAlignment" Value="Center"/>
                </Style>            
            </ScrollViewer.Resources>
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>                          
                    <Grid Margin="5,4,0,4" >
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="20" />
                            <ColumnDefinition SharedSizeGroup="labelColumn1" />
                            <ColumnDefinition  SharedSizeGroup="labelColumn2" />
                            <ColumnDefinition SharedSizeGroup="dataEntryColumn" />
                            <ColumnDefinition  Width="30"/>
                            <ColumnDefinition  SharedSizeGroup="labelColumn2"/>
                            <ColumnDefinition SharedSizeGroup="dataEntryColumn" />
                            <ColumnDefinition MaxWidth="0" />
                        </Grid.ColumnDefinitions>
                        <Grid.RowDefinitions>
                            <RowDefinition MinHeight="23" />
                            <RowDefinition MinHeight="23" />
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="Auto"/>

                        </Grid.RowDefinitions>

                        <TextBlock Text="Geometry Type" VerticalAlignment="Center" Grid.Column="1" Grid.Row="0"/>                       
                        <ComboBox Grid.Column="3" Margin="6,1,0,1"   Grid.Row="0" Width="150"  
                                  Name="cmboGeometryTypes"   
                                  SelectedItem="{Binding GeometryType, Mode=TwoWay}"
                                  HorizontalAlignment="Left"   
                                  DisplayMemberPath="Name"                                   
                                  Grid.ColumnSpan="1"                                      
                                 />

                        <TextBlock Text="Symbol Type" 
                                   Grid.Column="1" Grid.Row="1" VerticalAlignment="Center"/>
                        <ComboBox
                            Name="cmboSymbolEditors"
                            SelectedItem="{Binding SymbolEditorViewModel, Mode=TwoWay}"
                            HorizontalAlignment="Left"   
                            DisplayMemberPath="Alias" 
                            Width="150"
                            Grid.Column="3" 
                            Margin="6,1,0,1" 
                            Grid.Row="1"                            
                            Grid.ColumnSpan="1"  />               
                </Grid>

                <Label Padding="10,0,0,0" Margin="10,0,0,3" Style="{StaticResource fadingLabelSeperatorStlye}" Grid.Row="1">
                    Editor
                </Label>
                <local:SymbologyEditorControl x:Name="editor" Grid.Row="2"/>                               
            </Grid>
        </ScrollViewer>
    </Border>

and the effect I am observing is illustrated belowenter image description here

How do I fix this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T10:42:00+00:00Added an answer on May 20, 2026 at 10:42 am

    There was a common WPF bug that caused this behavior of any Popup type UI displaying in back instead of topmost so that may be what you’re seeing. I haven’t seen the issue in a while but I’m not sure if it was fixed or not. It’s related to bad video drivers so you might see it only on certain machines and not all the time.

    There was a hotfix available from MS support but it might be easier to just switch your application to use software rendering instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a combobox which has ItemsSource set to an ObservableCollection property called DATA
Setup: I have a combo-box, it's itemsource bound to an ObservableCollection<T> of a custom
I have a combo box defined as such <ComboBox Name=RoomDropDown Visibility={Binding Path=RoomDropDownVisible,Mode=OneWay,Converter={StaticResource BoolVisibilityConvertor}} ItemsSource={Binding
I have a combo box defined as such <ComboBox Name=RoomDropDown Visibility={Binding Path=RoomDropDownVisible,Mode=OneWay,Converter={StaticResource BoolVisibilityConvertor}} ItemsSource={Binding
I have a comboBox that has a datatrigger that set its SelectedIndex based on
I have combobox with checkbox in data template. Combobox ItemSource property is binded with
I have been going crazy with binding a combobox to an enum typed property
Im adding items to TreeView control via ItemsSource property and ItemTemplate property to set
I've got a set of ViewModels that I'm binding to the ItemsSource property of
I have a SubMenu in a ContextMenu which ItemSource is set to a expression

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.