Advertisement
Guest User

Untitled

a guest
May 12th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.16 KB | None | 0 0
  1. <Grid
  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:ed="http://schemas.microsoft.com/expression/2010/drawing"
  7.  mc:Ignorable="d"
  8.  d:DesignWidth="1280" d:DesignHeight="1024">
  9.         <Border Padding="15"   Background="{DynamicResource NoesisIndentBgBrush}" HorizontalAlignment="Right" Margin="0,50,75,0" VerticalAlignment="Top" Width="200" Height="220" >
  10.             <StackPanel x:Name="spNetworkStats"   >
  11.                 <TextBlock x:Name="nsRPCIn" TextWrapping="Wrap" Text="RPC In: 0" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  12.                 <TextBlock x:Name="nsRPCOut" TextWrapping="Wrap" Text="RPC Out: 0" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  13.                 <TextBlock x:Name="nsRPCAcks" TextWrapping="Wrap" Text="RPC Acks: 0" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  14.                 <TextBlock x:Name="nsNetworkIn" TextWrapping="Wrap" Text="Network In: 0 bps" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  15.                 <TextBlock x:Name="nsNetworkOut" TextWrapping="Wrap" Text="Network Out: 0 bps" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  16.                 <TextBlock x:Name="nsPing" TextWrapping="Wrap" Text="Ping: 999" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  17.                 <TextBlock x:Name="nsPing_Copy" TextWrapping="Wrap" Text="Mode: -" Foreground="White" FontSize="16" Margin="0,0,0,5"/>
  18.             </StackPanel>
  19.         </Border>
  20.         <Border Padding="15" Background="{DynamicResource NoesisIndentBgBrush}" HorizontalAlignment="Right" Margin="0,300,75,0" VerticalAlignment="Top" Width="200" Height="220" >
  21.             <StackPanel x:Name="spNetworkStatus">
  22.                 <TextBlock Text="Server Hostname / IP" Foreground="White" FontSize="14.667" Margin="0,5,0,0" />
  23.                 <TextBox x:Name="txtServerHost" Height="23" TextWrapping="Wrap" Margin="5,0,0,0"/>
  24.                 <Button x:Name="btnConnect" Content="Connect" Margin="20,5,20,15"/>
  25.                 <Button x:Name="btnHost" Content="Host Game" Margin="20,5,20,15" VerticalAlignment="Center" HorizontalAlignment="Center" BorderThickness="0"/>
  26.             </StackPanel>
  27.         </Border>
  28. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement