This question is locked. New answers and comments are not allowed.
Hi Telerik,
I am trying to create a list then under that a textbox and a button, it supposes to be easy, but when the list expands it somehow acts funny. the listpicker covers the rest of the controls, heres my code:
i tested it on both the emulator and the device
am i messing something? please help
I am trying to create a list then under that a textbox and a button, it supposes to be easy, but when the list expands it somehow acts funny. the listpicker covers the rest of the controls, heres my code:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <telerikInput:RadListPicker InlineModeThreshold="7" Header="Choose the Calculation Method:" Height="100" HorizontalAlignment="Left" Margin="12,6,0,0" Name="lstCalculationMethod" VerticalAlignment="Top" Width="438" SelectionChanged="lstCalculationMethod_SelectionChanged" > <my:String>One</my:String> <my:String>Two</my:String> <my:String>Three</my:String> <my:String>Four</my:String> <my:String>Five</my:String> <my:String>Six</my:String> <my:String>Seven</my:String> </telerikInput:RadListPicker> <TextBox Height="72" HorizontalAlignment="Left" Margin="12,176,0,0" Name="textBox1" Text="" VerticalAlignment="Top" Width="280" /> <Button Content="Search" Height="72" HorizontalAlignment="Left" Margin="290,176,0,0" Name="button1" VerticalAlignment="Top" Width="160" Click="button1_Click" /> <TextBlock Height="30" HorizontalAlignment="Left" Margin="24,154,0,0" Name="textBlock1" Text="Set your city:" VerticalAlignment="Top" /> <ListBox Height="313" HorizontalAlignment="Left" Margin="24,268,0,0" Name="listBox1" VerticalAlignment="Top" Width="409" FontSize="28" /></Grid>i tested it on both the emulator and the device
am i messing something? please help