|
18 | 18 | <RowDefinition Height="Auto"/> |
19 | 19 | <RowDefinition Height="Auto"/> |
20 | 20 | <RowDefinition Height="Auto"/> |
| 21 | + <RowDefinition Height="Auto"/> |
| 22 | + <RowDefinition Height="Auto"/> |
| 23 | + <RowDefinition Height="Auto"/> |
21 | 24 | <RowDefinition Height="*"/> |
22 | 25 | </Grid.RowDefinitions> |
23 | 26 | <StackPanel Grid.Row="0" Orientation="Horizontal"> |
24 | | - <Label Content="Name" Width="100"/> |
| 27 | + <Label Content="Name" Width="125"/> |
25 | 28 | <TextBox Text="{Binding Name}" Margin="3"/> |
26 | 29 | </StackPanel> |
27 | 30 | <StackPanel Grid.Row="1" Orientation="Horizontal"> |
28 | | - <Label Content="Position" Width="100"/> |
| 31 | + <Label Content="Position" Width="125"/> |
29 | 32 | <TextBox Text="{Binding Position}" Margin="3" /> |
30 | 33 | </StackPanel> |
31 | 34 | <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"/> |
| 35 | + <Label Content="Distance From Center" Width="125" /> |
| 36 | + <TextBox Text="{Binding PrettyDistance, Mode=OneWay}" Margin="3" /> |
34 | 37 | </StackPanel> |
35 | 38 | <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" /> |
| 39 | + <Label Content="SteamID" Width="125" /> |
| 40 | + <TextBox Name="SelectedPlayerSteamID" Text="{Binding SteamID, Mode=OneWay}" Margin="3" IsReadOnly="True"/> |
38 | 41 | </StackPanel> |
39 | 42 | <StackPanel Grid.Row="4" Orientation="Horizontal"> |
40 | | - <Label Content="Last Login" Width="100" /> |
41 | | - <TextBox Text="{Binding LoginTime, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
| 43 | + <Label Content="GameID" Width="125" /> |
| 44 | + <TextBox Name="PlayerGameID" Text="{Binding GameID, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
42 | 45 | </StackPanel> |
43 | 46 | <StackPanel Grid.Row="5" Orientation="Horizontal"> |
44 | | - <Label Content="Speed" Width="100" /> |
| 47 | + <Label Content="Last Login" Width="125" /> |
| 48 | + <TextBox Text="{Binding LoginTime, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
| 49 | + </StackPanel> |
| 50 | + <StackPanel Grid.Row="6" Orientation="Horizontal"> |
| 51 | + <Label Content="Speed" Width="125" /> |
45 | 52 | <TextBox Text="{Binding Speed, Mode=OneWay}" Margin="3" IsReadOnly="True" /> |
46 | 53 | </StackPanel> |
47 | | - <StackPanel Grid.Row="6" Orientation="Vertical"> |
| 54 | + <StackPanel Grid.Row="7" Orientation="Vertical"> |
48 | 55 | <Label Content="Send DM" HorizontalAlignment="Left" /> |
49 | 56 | <TextBox x:Name="DM_TextToPlayer" Height="40" Margin="3"/> |
50 | 57 | <Button Content="Send" Margin="3" Click="SendDM_ToPlayer"/> |
51 | 58 | </StackPanel> |
52 | | - <ScrollViewer Grid.Row="7" Margin="3" VerticalScrollBarVisibility="Auto"> |
| 59 | + <ScrollViewer Grid.Row="8" Margin="3" VerticalScrollBarVisibility="Auto"> |
53 | 60 | <local:EntityControlsView DataContext="{Binding}"/> |
54 | 61 | </ScrollViewer> |
55 | 62 | </Grid> |
|
0 commit comments