]> fbox.kageds.com Git - NEATEST.git/blob - NEA/Store.xaml
Basic Store
[NEATEST.git] / NEA / Store.xaml
1 <Window x:Class="Store"
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:NEA"
7 mc:Ignorable="d"
8 Title="Store"
9
10 WindowStartupLocation="CenterScreen"
11 WindowState="Maximized" Width="1231.5" Height="1069" Background="#FF403939">
12 <Grid>
13
14 <Border BorderBrush="Black" BorderThickness="1" Background="#FF343232" Height="64" VerticalAlignment="Top"/>
15 <TextBox x:Name="txtSearch" HorizontalAlignment="Right" Height="30" Margin="0,10,69,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="257" BorderBrush="#00ABADB3" Foreground="White" >
16 <TextBox.Style>
17 <Style xmlns:sys="clr-namespace:System;assembly=mscorlib" TargetType="{x:Type TextBox}">
18 <Style.Resources>
19 <VisualBrush x:Key="CueBannerBrush" AlignmentX="Left" AlignmentY="Center" Stretch="None">
20 <VisualBrush.Visual>
21 <Label Content="Search" Foreground="White" FontSize="35"/>
22 </VisualBrush.Visual>
23 </VisualBrush>
24 </Style.Resources>
25 <Style.Triggers>
26 <Trigger Property="IsKeyboardFocused" Value="False">
27 <Setter Property="Background" Value="#FF4D4B4B" />
28 </Trigger>
29 <Trigger Property="Text" Value="{x:Static sys:String.Empty}">
30 <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
31 </Trigger>
32 <Trigger Property="Text" Value="{x:Null}">
33 <Setter Property="Background" Value="{StaticResource CueBannerBrush}" />
34 </Trigger>
35 <Trigger Property="IsKeyboardFocused" Value="True">
36 <Setter Property="Background" Value="#FF4D4B4B" />
37 </Trigger>
38
39 </Style.Triggers>
40 </Style>
41 </TextBox.Style>
42 </TextBox>
43 <Button x:Name="btnsearch" Content="" BorderBrush="#00938484" HorizontalAlignment="Right" Width="59" Height="30" VerticalAlignment="Top" Margin="0,10,10,0" Style="{DynamicResource NoBlueHighlightOnPictureButton}" RenderTransformOrigin="1.907,0.6">
44 <Button.Background>
45 <ImageBrush ImageSource="search.png"/>
46 </Button.Background>
47 </Button>
48 <Button x:Name="btnStore" Content="STORE" HorizontalAlignment="Left" Height="64" VerticalAlignment="Top" Width="150" Background="#00DDDDDD" BorderBrush="#00707070" Foreground="White" FontFamily="Tw Cen MT Condensed Extra Bold" FontSize="48" Style="{DynamicResource NoBlueHighlightOnWordButton}">
49 <Button.Effect>
50 <DropShadowEffect Color="White" Direction="100" Opacity="0.5" ShadowDepth="2"/>
51 </Button.Effect>
52 </Button>
53 <TextBox x:Name="txtname" HorizontalAlignment="Left" Height="56" Margin="0,64,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="725" Background="#FF403939" BorderBrush="#00ABADB3" Foreground="#FF9E9E9E" SelectionBrush="#000078D7" FontSize="40" IsEnabled="False"/>
54 <Button x:Name="btnlirary" Content="LIBRARY" HorizontalAlignment="Left" Height="64" VerticalAlignment="Top" Width="174" Background="#00DDDDDD" BorderBrush="#00707070" Foreground="White" FontFamily="Tw Cen MT Condensed Extra Bold" FontSize="48" Margin="150,0,0,0" Style="{DynamicResource NoBlueHighlightOnWordButton}">
55 <Button.Effect>
56 <DropShadowEffect Color="White" Direction="100" Opacity="0.5" ShadowDepth="2"/>
57 </Button.Effect>
58 </Button>
59 <Button x:Name="BTNaCCOUNT" Content="ACCOUNT" HorizontalAlignment="Left" Height="64" VerticalAlignment="Top" Width="174" Background="#00DDDDDD" BorderBrush="#00707070" Foreground="White" FontFamily="Tw Cen MT Condensed Extra Bold" FontSize="48" Margin="329,0,0,0" Style="{DynamicResource NoBlueHighlightOnWordButton}">
60 <Button.Effect>
61 <DropShadowEffect Color="White" Direction="100" Opacity="0.5" ShadowDepth="2"/>
62 </Button.Effect>
63 </Button>
64 <Image x:Name="imgLogo" HorizontalAlignment="Left" Height="242" Margin="0,125,0,0" VerticalAlignment="Top" Width="503" Stretch="UniformToFill"/>
65 <ListBox x:Name="lstTags" HorizontalAlignment="Left" Height="46" Margin="0,601,0,0" VerticalAlignment="Top" Width="503"/>
66 <Button x:Name="btnBuy" Content="" HorizontalAlignment="Left" Height="67" Margin="0,367,0,0" VerticalAlignment="Top" Width="503" FontSize="35"/>
67 <Label x:Name="lblPublisher" Content="" HorizontalAlignment="Left" Height="54" Margin="0,542,0,0" VerticalAlignment="Top" Width="503" FontSize="35" Foreground="#FF9E9E9E"/>
68 <Label x:Name="lblReviews" Content="" HorizontalAlignment="Left" Height="54" Margin="0,488,0,0" VerticalAlignment="Top" Width="503" FontSize="35" Foreground="#FF9E9E9E"/>
69 <Label x:Name="lblRating" Content="" HorizontalAlignment="Left" Height="54" Margin="0,434,0,0" VerticalAlignment="Top" Width="503" Background="#00000000" FontSize="35" Foreground="#FF9E9E9E"/>
70
71
72 </Grid>
73 </Window>