<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Grid>  
    <Grid.RowDefinitions>
      <RowDefinition Height="4*"/>
      <RowDefinition/>
    </Grid.RowDefinitions>
    <Rectangle RadiusX="10" RadiusY="10" Fill="Silver" Margin="10"/>
    <Frame Source="{Binding ElementName=myCombo,Path=Text}"/>
    <ComboBox x:Name="myCombo" Grid.Row="1" FontSize="24" Margin="10">
      <ComboBoxItem IsSelected="True">http://www.microsoft.com</ComboBoxItem>
      <ComboBoxItem>http://www.apple.com</ComboBoxItem>
      <ComboBoxItem>http://www.dell.com</ComboBoxItem>
    </ComboBox>
  </Grid>
</Page>
