You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

StatusBarOfHunter.xaml 1.9 kB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="Client.StatusBarOfHunter"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Client"
  7. mc:Ignorable="d"
  8. d:DesignHeight="174" d:DesignWidth="180">
  9. <Grid Name="background" >
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="35*"/>
  12. <RowDefinition Height="67*"/>
  13. <RowDefinition Height="22*"/>
  14. <RowDefinition Height="20*"/>
  15. <RowDefinition Height="26*"/>
  16. </Grid.RowDefinitions>
  17. <Grid.ColumnDefinitions>
  18. <ColumnDefinition Width="7*"/>
  19. <ColumnDefinition Width="53*"/>
  20. </Grid.ColumnDefinitions>
  21. <TextBox Name="serial" IsReadOnly="True" BorderBrush="White" TextWrapping="Wrap" Text="👥null👻null&#xD;&#xA;Skill:" Grid.Row="0" Grid.ColumnSpan="2" FontSize="12" Margin="0,0,0,68" Grid.RowSpan="2"/>
  22. <TextBox Name="status" IsReadOnly="True" BorderBrush="White" TextWrapping="Wrap" Text="🏹:&#xA;🏃:&#xA;🤺:&#xA;🗡:" Grid.Row="1" Grid.ColumnSpan="2"/>
  23. <TextBox Name="scores" IsReadOnly="True" BorderBrush="White" TextWrapping="Wrap" Text="Scores:" Grid.Row="1" Grid.ColumnSpan="2" Margin="0,68,0,20" Grid.RowSpan="3"/>
  24. <TextBox Name="star" IsReadOnly="True" BorderBrush="White" TextWrapping="Wrap" Text="" Grid.Row="3" Grid.ColumnSpan="2"/>
  25. <TextBox Name="prop" IsReadOnly="True" BorderBrush="Gray" Text="" FontSize="12" Margin="0,20,0,0" TextWrapping="Wrap" Grid.Row="3" Grid.Column="0" Grid.RowSpan="2"></TextBox>
  26. <ProgressBar Name="skillprogress" Background="White" Margin="0,20,0,0" Grid.Row="3" Grid.Column="1" Grid.RowSpan="2"/>
  27. </Grid>
  28. </UserControl>