<UniformGrid Grid.Column="0" Grid.Row="2" Margin="5" Columns="5" Rows="2"><TextBlock Text="Trial Number" FontSize="20" FontFamily="Verdana"/><TextBlock Text="Is Congruent" FontSize="20" FontFamily="Verdana"/><TextBlock Text="Response Code" FontSize="20" FontFamily="Verdana"/><TextBlock Text="RT" FontSize="20" FontFamily="Verdana"/><TextBlock Text="Correct" FontSize="20" FontFamily="Verdana"/><TextBlock Text="{Binding TrialNumber}" FontFamily="Calibri"/><TextBlock Text="{Binding IsCongruentTrial}" FontFamily="Verdana"/><TextBlock Text="{Binding ResponseCode}" FontFamily="Verdana"/><TextBlock Text="{Binding RT}" FontFamily="Verdana"/><TextBlock Text="{Binding Correct}" FontFamily="Verdana"/></UniformGrid>
| This script will do the same as the previous one and it will add five text blocks to the first row of the table and five text blocks to the second row.Text in the first row is a simple text.{Binding TrialNumber} will put value of the TrialNumber variable to the text block. The same belongs to the other four variables.
|