Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

HomeView.xaml 4.0 KiB

pirms 8 mēnešiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <UserControl x:Class="Example.Views.HomeView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Example.Views"
  7. xmlns:miw="clr-namespace:Material.Icons.WPF;assembly=Material.Icons.WPF"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Grid>
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition/>
  14. <RowDefinition/>
  15. </Grid.RowDefinitions>
  16. <StackPanel Grid.Row="0" Orientation="Vertical" Margin="25 40 125 40">
  17. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  18. <TextBlock Text="Game" Foreground="{StaticResource PrimaryColor1}" FontSize="25" FontWeight="Bold"/>
  19. <miw:MaterialIcon Kind="Circle" Foreground="Green" Margin="75 2 2 2"/>
  20. </StackPanel>
  21. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  22. <TextBlock Text="SteamID" Foreground="{StaticResource PrimaryColor1}" FontSize="25" FontWeight="Bold"/>
  23. <miw:MaterialIcon Kind="Circle" Foreground="Green" Margin="43 2 2 2" BorderBrush="{StaticResource Dark}" BorderThickness="1"/>
  24. </StackPanel>
  25. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  26. <TextBlock Text="Server" Foreground="{StaticResource PrimaryColor1}" FontSize="25" FontWeight="Bold"/>
  27. <miw:MaterialIcon Kind="Circle" Foreground="Green" Margin="67 2 2 2" BorderBrush="{StaticResource Dark}" BorderThickness="1"/>
  28. </StackPanel>
  29. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  30. <TextBlock Text="Overlay" Foreground="{StaticResource PrimaryColor1}" FontSize="25" FontWeight="Bold"/>
  31. <miw:MaterialIcon Kind="Circle" Foreground="Green" Margin="52 2 2 2" BorderBrush="{StaticResource Dark}" BorderThickness="1"/>
  32. </StackPanel>
  33. </StackPanel>
  34. <StackPanel Grid.Row="1" Orientation="Vertical" Margin="15 15 15 15">
  35. <StackPanel Orientation="Horizontal" Margin="10">
  36. <TextBlock Text="Server Name:" Foreground="{StaticResource PrimaryColor1}" FontSize="15" FontWeight="Bold" VerticalAlignment="Center"/>
  37. <TextBlock Text=" NaMe Of ThE SeRvEr /" FontSize="15" FontWeight="Bold" Foreground="Azure" VerticalAlignment="Center" Margin="15 0 0 0"/>
  38. </StackPanel>
  39. <StackPanel Orientation="Horizontal" Margin="10">
  40. <TextBlock Text="IP:" Foreground="{StaticResource PrimaryColor1}" FontSize="15" FontWeight="Bold" VerticalAlignment="Center"/>
  41. <TextBlock Text=" NaMe Of ThE SeRvEr /" FontSize="15" FontWeight="Bold" Foreground="Azure" VerticalAlignment="Center" Margin="15 0 0 0"/>
  42. </StackPanel>
  43. <StackPanel Orientation="Horizontal" Margin="10">
  44. <TextBlock Text="Players:" Foreground="{StaticResource PrimaryColor1}" FontSize="15" FontWeight="Bold" VerticalAlignment="Center"/>
  45. <TextBlock Text="10 / 10" FontSize="15" FontWeight="Bold" Foreground="Azure" VerticalAlignment="Center" Margin="15 0 0 0"/>
  46. <TextBlock Text="Rank:" Foreground="{StaticResource PrimaryColor1}" FontSize="15" FontWeight="Bold" VerticalAlignment="Center" Margin="45 0 0 0"/>
  47. <TextBlock Text="765" FontSize="15" FontWeight="Bold" Foreground="Azure" VerticalAlignment="Center" Margin="15 0 0 0"/>
  48. </StackPanel>
  49. </StackPanel>
  50. </Grid>
  51. </Grid>
  52. </UserControl>