[ADDITION] fixed the chatbox size

This commit is contained in:
Dogukan
2020-10-20 19:53:28 +02:00
parent f5c67fc2da
commit 7dbdcc8bcc
2 changed files with 2 additions and 3 deletions

View File

@@ -48,7 +48,7 @@
</Border> </Border>
<Grid Grid.Column="2" Grid.Row="1"> <Grid Grid.Column="2" Grid.Row="1">
<TextBox Name="SentMessage" IsReadOnly="True"/> <TextBox Name="SentMessage" IsReadOnly="True" Margin="0,0,0,50"/>
<TextBox x:Name="ChatBox" Keyboard.KeyDown="ChatBox_KeyDown" Width="200" Height="50" ToolTip="Message goes here" ToolTipService.IsEnabled="True" VerticalAlignment="Bottom" HorizontalAlignment="Left"/> <TextBox x:Name="ChatBox" Keyboard.KeyDown="ChatBox_KeyDown" Width="200" Height="50" ToolTip="Message goes here" ToolTipService.IsEnabled="True" VerticalAlignment="Bottom" HorizontalAlignment="Left"/>
</Grid> </Grid>

View File

@@ -1,5 +1,4 @@
 using Client;
using Client;
using SharedClientServer; using SharedClientServer;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;