You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
3.3 KiB
59 lines
3.3 KiB
<Window x:Class="FakeGoogle.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:FakeGoogle"
|
|
mc:Ignorable="d"
|
|
Background="#202124"
|
|
Title="FakeGoogle" Height="500" Width="800"
|
|
MinHeight="500" MinWidth="800"
|
|
FontFamily="맑은 고딕">
|
|
<Window.Resources>
|
|
<Style TargetType="{x:Type Button}">
|
|
<Setter Property="Background" Value="#303134"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Button}">
|
|
<Border CornerRadius="5" Background="{TemplateBinding Background}" BorderBrush="Transparent">
|
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Style.Triggers>
|
|
<Trigger Property="IsMouseOver" Value="True">
|
|
<Setter Property="Background" Value="#3A3A3A"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</Window.Resources>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="3*"/>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<MediaElement Width="500"
|
|
Source="https://www.google.com/logos/doodles/2023/googles-25th-birthday-6753651837110114-6752733080610507-cst.gif"/>
|
|
</Grid>
|
|
<Border Grid.Row="1" Width="600" Height="45" Margin="30 20 30 20" CornerRadius="25" BorderBrush="#9AA0A6" BorderThickness="1">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Width="30" Height="30" Margin="15 0 0 0" Source="https://files.softicons.com/download/toolbar-icons/twg-retina-icons-by-the-working-group/png/64x64/magnifier.png"/>
|
|
<TextBox x:Name="tbMain" Width="430" Margin="15 0 0 0" BorderBrush="Transparent" Background="Transparent" Foreground="WhiteSmoke" VerticalAlignment="Center"
|
|
FontSize="20" Text="text"/>
|
|
<Image Width="30" Height="30" Margin="15 0 0 0" Source="https://files.softicons.com/download/toolbar-icons/twg-retina-icons-by-the-working-group/png/48x48/keyboard.png"/>
|
|
<Image Width="30" Height="30" Margin="15 0 15 0" Source="https://files.softicons.com/download/toolbar-icons/twg-retina-icons-by-the-working-group/png/48x48/photo.png"/>
|
|
</StackPanel>
|
|
</Border>
|
|
<Grid Grid.Row="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button x:Name="btnSearch" Foreground="WhiteSmoke" Grid.Column="0" HorizontalAlignment="Right" Height="35" Width="120" Margin="10" Content="Google 검색"/>
|
|
<Button x:Name="btnLucky" Foreground="WhiteSmoke" Grid.Column="1" HorizontalAlignment="Left" Height="35" Width="120" Margin="10" Content="I'm feeling Lucky"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|
|
|