| 27 | | </Grid.RowDefinitions> |
|---|
| 28 | | |
|---|
| 29 | | <StackPanel Orientation="Horizontal" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center"> |
|---|
| 30 | | <Button Template="{StaticResource BackIcon}" Margin="5"/> |
|---|
| 31 | | <Button Template="{StaticResource PlayIcon}" Margin="5"/> |
|---|
| 32 | | <Button Template="{StaticResource NextIcon}" Margin="5"/> |
|---|
| | 37 | </Grid.RowDefinitions> |
|---|
| | 38 | |
|---|
| | 39 | <!-- This is the background for the top control bar--> |
|---|
| | 40 | <Border BorderThickness="0" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="4"> |
|---|
| | 41 | <Border.Background> |
|---|
| | 42 | <LinearGradientBrush EndPoint="0,1" StartPoint="0,0" SpreadMethod="Pad"> |
|---|
| | 43 | <GradientStop Color="#B3DADA" Offset="0"/> |
|---|
| | 44 | <GradientStop Color="#428484" Offset="0.5"/> |
|---|
| | 45 | <GradientStop Color="#2C7C7C" Offset="0.5"/> |
|---|
| | 46 | <GradientStop Color="#0E5353" Offset="1"/> |
|---|
| | 47 | </LinearGradientBrush> |
|---|
| | 48 | </Border.Background> |
|---|
| | 49 | </Border> |
|---|
| | 50 | |
|---|
| | 51 | <StackPanel Orientation="Horizontal" Grid.Row="0" Grid.ColumnSpan="3" Grid.Column="1" HorizontalAlignment="Center"> |
|---|
| | 52 | <Button Template="{StaticResource BackIcon}" Margin="5"> |
|---|
| | 53 | <Button.BitmapEffect> |
|---|
| | 54 | <OuterGlowBitmapEffect GlowColor="#FF000000" GlowSize="2" Opacity="0.9"/> |
|---|
| | 55 | </Button.BitmapEffect> |
|---|
| | 56 | </Button> |
|---|
| | 57 | <Button Template="{StaticResource PlayIcon}" Margin="5"> |
|---|
| | 58 | <Button.BitmapEffect> |
|---|
| | 59 | <OuterGlowBitmapEffect GlowColor="#FF000000" GlowSize="2" Opacity="0.9"/> |
|---|
| | 60 | </Button.BitmapEffect> |
|---|
| | 61 | </Button> |
|---|
| | 62 | <Button Template="{StaticResource NextIcon}" Margin="5"> |
|---|
| | 63 | <Button.BitmapEffect> |
|---|
| | 64 | <OuterGlowBitmapEffect GlowColor="#FF000000" GlowSize="2" Opacity="0.9"/> |
|---|
| | 65 | </Button.BitmapEffect> |
|---|
| | 66 | </Button> |
|---|
| 37 | | <StackPanel Name="serverStack" Grid.Row="1" Grid.Column="0" Margin="5"> |
|---|
| 38 | | <!--StackPanel Orientation="Horizontal"> |
|---|
| 39 | | <Image Source="pack://application:,,/resources/Server_red.png" Height="20" Width="20"/> |
|---|
| 40 | | <TextBlock Margin="2" FontSize="15">Brian's</TextBlock> |
|---|
| 41 | | <Button Template="{StaticResource ServerAdd}"/> |
|---|
| 42 | | </StackPanel--> |
|---|
| 43 | | </StackPanel> |
|---|
| 44 | | |
|---|
| | 71 | <Border Grid.Row="1" BorderBrush="#80CCD9D9" Margin="3,0,0,0" BorderThickness="3"> |
|---|
| | 72 | <StackPanel Name="serverStack"> |
|---|
| | 73 | <StackPanel.Background> |
|---|
| | 74 | <SolidColorBrush Color="GhostWhite" Opacity="0.6"/> |
|---|
| | 75 | </StackPanel.Background> |
|---|
| | 76 | <Canvas Height="24"> |
|---|
| | 77 | <Image Source="pack://application:,,/resources/Server_red.png"/> |
|---|
| | 78 | <TextBlock x:Name="ServerIndicator" Width="150" Margin="20,3,0,0" TextTrimming="CharacterEllipsis" |
|---|
| | 79 | ToolTip="{Binding Path=Text, ElementName=ServerIndicator, Mode=Default}" |
|---|
| | 80 | Text="My Server name is really long blah blah blah"/> |
|---|
| | 81 | <Button Template="{StaticResource ServerAdd}" Margin="170,0,0,0"/> |
|---|
| | 82 | </Canvas> |
|---|
| | 83 | <!--StackPanel Orientation="Horizontal"> |
|---|
| | 84 | <Image Source="pack://application:,,/resources/Server_red.png" Height="20" Width="20"/> |
|---|
| | 85 | <TextBlock Margin="2" FontSize="15">Brian's</TextBlock> |
|---|
| | 86 | <Button Template="{StaticResource ServerAdd}"/> |
|---|
| | 87 | </StackPanel--> |
|---|
| | 88 | </StackPanel> |
|---|
| | 89 | </Border> |
|---|
| | 90 | |
|---|