ComboBox dropdown positioning under Silverlight

1 reply. Last post: December 26, 2011 11:03 PM by Yudi
Tags :
  • New Discussion
  • New Question
  • New Product Feedback

Hi, I'm evaluating the Client UI Silverlight version on a Windows 7 machine using IE9. I have attached an image showing the dropdown positioning far to the left of the control. This appears to happen when columns to the left have a variable size (i.e. width of star). Code for the example is included below.  Also if you remove the last rowdefinition the combobox height resizes whenever it is clicked.  Is this an issue with the software or am I missing a setting.  Any assistance appreciated. Jonathan


P.S. This only occurs when the browser zoom level is other than 100% and I am using a 120 dpi monitor.


<UserControl x:Class="SilverlightApplication11.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:Intersoft="clr-namespace:Intersoft.Client.UI.Aqua.UXCollection;assembly=Intersoft.Client.UI.Aqua.UXCollection">

  <Grid x:Name="LayoutRoot">

    <Grid.ColumnDefinitions>

      <ColumnDefinition Width="250" />

      <ColumnDefinition Width="5" />

      <ColumnDefinition Width="*" />

      <ColumnDefinition Width="5" />

      <ColumnDefinition Width="250" />

    </Grid.ColumnDefinitions>

    <Grid.RowDefinitions>

      <RowDefinition Height="Auto" />

      <RowDefinition Height="5" />

      <RowDefinition Height="Auto" />

      <RowDefinition Height="*" />

    </Grid.RowDefinitions>

    <ComboBox Grid.Column="0" Grid.Row="0" Width="150">

      <ComboBoxItem Content="Andrew" />

      <ComboBoxItem Content="Angela" />

      <ComboBoxItem Content="Angeline" />

      <ComboBoxItem Content="David" />

      <ComboBoxItem Content="Hill" />

      <ComboBoxItem Content="Karen" />

      <ComboBoxItem Content="Kory" />

      <ComboBoxItem Content="Michelle" />

    </ComboBox>

    <Intersoft:UXComboBox Grid.Column="0" Grid.Row="2" Width="150">

      <Intersoft:UXComboBoxItem Content="Andrew" />

      <Intersoft:UXComboBoxItem Content="Angela" />

      <Intersoft:UXComboBoxItem Content="Angeline" />

      <Intersoft:UXComboBoxItem Content="David" />

      <Intersoft:UXComboBoxItem Content="Hill" />

      <Intersoft:UXComboBoxItem Content="Karen" />

      <Intersoft:UXComboBoxItem Content="Kory" />

      <Intersoft:UXComboBoxItem Content="Michelle" />

    </Intersoft:UXComboBox>

    <ComboBox Grid.Column="2" Grid.Row="0" Width="150">

      <ComboBoxItem Content="Andrew" />

      <ComboBoxItem Content="Angela" />

      <ComboBoxItem Content="Angeline" />

      <ComboBoxItem Content="David" />

      <ComboBoxItem Content="Hill" />

      <ComboBoxItem Content="Karen" />

      <ComboBoxItem Content="Kory" />

      <ComboBoxItem Content="Michelle" />

    </ComboBox>

    <Intersoft:UXComboBox Grid.Column="2" Grid.Row="2" Width="150">

      <Intersoft:UXComboBoxItem Content="Andrew" />

      <Intersoft:UXComboBoxItem Content="Angela" />

      <Intersoft:UXComboBoxItem Content="Angeline" />

      <Intersoft:UXComboBoxItem Content="David" />

      <Intersoft:UXComboBoxItem Content="Hill" />

      <Intersoft:UXComboBoxItem Content="Karen" />

      <Intersoft:UXComboBoxItem Content="Kory" />

      <Intersoft:UXComboBoxItem Content="Michelle" />

    </Intersoft:UXComboBox>

    <ComboBox Grid.Column="4" Grid.Row="0" Width="150">

      <ComboBoxItem Content="Andrew" />

      <ComboBoxItem Content="Angela" />

      <ComboBoxItem Content="Angeline" />

      <ComboBoxItem Content="David" />

      <ComboBoxItem Content="Hill" />

      <ComboBoxItem Content="Karen" />

      <ComboBoxItem Content="Kory" />

      <ComboBoxItem Content="Michelle" />

    </ComboBox>

    <Intersoft:UXComboBox Grid.Column="4" Grid.Row="2" Width="150">

      <Intersoft:UXComboBoxItem Content="Andrew" />

      <Intersoft:UXComboBoxItem Content="Angela" />

      <Intersoft:UXComboBoxItem Content="Angeline" />

      <Intersoft:UXComboBoxItem Content="David" />

      <Intersoft:UXComboBoxItem Content="Hill" />

      <Intersoft:UXComboBoxItem Content="Karen" />

      <Intersoft:UXComboBoxItem Content="Kory" />

      <Intersoft:UXComboBoxItem Content="Michelle" />

    </Intersoft:UXComboBox>

  </Grid>

</UserControl>

1 attachment
All times are GMT -5. The time now is 6:41 PM.
Previous Next