<ListBox Name="ti" Height="Auto" Width="Auto" Margin="512,0,0,0" > <ListBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Vertical" Background="Purple"> <TextBlock Text="{Binding Qus}" Width="800" Height="auto" FontSize="20" Foreground="White"/> <RadioButton Content="{Binding Op1}" Name="rbA" Width="670" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="20" Checked="RadioButton_Checked_1" /> <RadioButton Content="{Binding Op2}" Width="670" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize=" 20" Checked="RadioButton_Checked_2"/> <RadioButton Content="{Binding Op3}" Width="670" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="20" Checked="RadioButton_Checked_3" /> <RadioButton Content="{Binding Op4}" Width="670" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="20" Checked="RadioButton_Checked_4" /> <TextBlock Name="kit" Text="{Binding Ans}" Foreground="Red" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize=" 20"/> </StackPanel> </DataTemplate> </ListBox.ItemTemplate>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)