We take a Silverlight application and write the following XAML code in editor:
<Grid
x:Name="LayoutRoot"
Background="White">
<ListBox
Height="254"
HorizontalAlignment="Left"
Margin="10,10,0,0"
ItemsSource="{Binding
}"
Name="listBox1"
VerticalAlignment="Top"
Width="141"
Background="#FF867082"
FontSize="15"
Foreground="Black"
/>
<Button
Content="Click
"
Height="36"
HorizontalAlignment="Left"
Margin="157,12,0,0"
Name="Button1"
VerticalAlignment="Top"
Width="81"
/>
</Grid>


Join the conversation! Your thoughts help the community grow.