mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 22:01:18 +00:00
Fix textbox wrapping with long names
This commit is contained in:
parent
435daf6eb6
commit
0e2e9ef8fe
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@
|
||||||
<!-- Right side of window -->
|
<!-- Right side of window -->
|
||||||
<Grid Grid.Column="1">
|
<Grid Grid.Column="1">
|
||||||
<TextBlock Text="Damage output:" />
|
<TextBlock Text="Damage output:" />
|
||||||
<TextBox x:Name="txtDamageOutput" Margin="0,20,0,0" Background="#FF272727" IsReadOnly="True" />
|
<TextBox x:Name="txtDamageOutput" TextWrapping="Wrap" Margin="0,20,0,0" Background="#FF272727" IsReadOnly="True" />
|
||||||
</Grid>
|
</Grid>
|
||||||
<!-- Text at the bottom -->
|
<!-- Text at the bottom -->
|
||||||
<TextBlock Text="Made by Mathias Lui" Grid.ColumnSpan="2" Grid.Row="1" FontSize="10" HorizontalAlignment="Center" />
|
<TextBlock Text="Made by Mathias Lui" Grid.ColumnSpan="2" Grid.Row="1" FontSize="10" HorizontalAlignment="Center" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue