|
11 | 11 | </UserControl.DataContext> |
12 | 12 | <Grid> |
13 | 13 | <Grid.RowDefinitions> |
| 14 | + <RowDefinition Height="Auto"/> |
| 15 | + <RowDefinition Height="Auto"/> |
| 16 | + <RowDefinition Height="Auto"/> |
| 17 | + <RowDefinition Height="Auto"/> |
| 18 | + <RowDefinition Height="Auto"/> |
14 | 19 | <RowDefinition Height="Auto"/> |
15 | 20 | <RowDefinition Height="Auto"/> |
16 | 21 | <RowDefinition Height="*"/> |
|
23 | 28 | <Label Content="Position" Width="100"/> |
24 | 29 | <TextBox Text="{Binding Position}" Margin="3" /> |
25 | 30 | </StackPanel> |
26 | | - <ScrollViewer Grid.Row="2" Margin="3" VerticalScrollBarVisibility="Auto"> |
| 31 | + <StackPanel Grid.Row="2" Orientation="Horizontal"> |
| 32 | + <Label Content="SteamID" Width="100" /> |
| 33 | + <TextBox Name="SelectedPlayerSteamID" Text="{Binding SteamID, Mode=OneWay}" Margin="3" IsReadOnly="True"/> |
| 34 | + </StackPanel> |
| 35 | + <StackPanel Grid.Row="3" Orientation="Horizontal"> |
| 36 | + <Label Content="GameID" Width="100" /> |
| 37 | + <TextBox Name="PlayerGameID" Text="{Binding GameID, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
| 38 | + </StackPanel> |
| 39 | + <StackPanel Grid.Row="4" Orientation="Horizontal"> |
| 40 | + <Label Content="Last Login" Width="100" /> |
| 41 | + <TextBox Text="{Binding LoginTime, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
| 42 | + </StackPanel> |
| 43 | + <StackPanel Grid.Row="5" Orientation="Horizontal"> |
| 44 | + <Label Content="Speed" Width="100" /> |
| 45 | + <TextBox Text="{Binding Speed, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
| 46 | + </StackPanel> |
| 47 | + <StackPanel Grid.Row="6" Orientation="Vertical"> |
| 48 | + <Label Content="Send DM" HorizontalAlignment="Left" /> |
| 49 | + <TextBox x:Name="DM_TextToPlayer" Height="40" Margin="3"/> |
| 50 | + <Button Content="Send" Margin="3" Click="SendDM_ToPlayer"/> |
| 51 | + </StackPanel> |
| 52 | + <ScrollViewer Grid.Row="7" Margin="3" VerticalScrollBarVisibility="Auto"> |
27 | 53 | <local:EntityControlsView DataContext="{Binding}"/> |
28 | 54 | </ScrollViewer> |
29 | 55 | </Grid> |
|
0 commit comments