I am working in a simple program with some button, one text box, and also some combo box.
I need help in my code of text BOX. What I am trying to do is when I click button again results have to appear again in text box, and without deleting previous results:
<StackPanel>
<ComboBox Name="cb1" Margin="0,10,0,0" Width="100">
<ComboBoxItem Content="Peugeot"/>
<ComboBoxItem Content="BMW"/>
<ComboBoxItem Content="GOLF"/>
</ComboBox>
<ComboBox Name="cb2" Margin="0,10,0,0">
<ComboBoxItem Content="Usa"/>
<ComboBoxItem Content="Germany"/>
<ComboBoxItem Content="France"/>
</ComboBox>
<TextBox Name="txt1" Margin="0,10,0,0" Width="200" Height="100"/>
<Button Name="btnclick" Margin="0,10,0,0" Width="50" Height="30" Content="Click" Click="btnclick_Click" />