-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.xaml
31 lines (30 loc) · 2.83 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Window x:Class="FilumDLWPF.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:FilumDLWPF"
mc:Ignorable="d"
Title="Filum-DL Application v1.6.0 - The ultimate downloader for your needs!" Height="459" Width="800" ResizeMode="NoResize"
Icon="/LogoSummer.ico"
Background="Aqua"
>
<Grid Margin="0,-32,-60,0">
<Grid.RowDefinitions>
<RowDefinition Height="460*"/>
<RowDefinition Height="9*"/>
<RowDefinition Height="6*"/>
</Grid.RowDefinitions>
<ComboBox HorizontalAlignment="Left" Visibility="Visible" FontSize="20px" Margin="106,213,0,0" Name="exType" VerticalAlignment="Top" Width="571" RenderTransformOrigin="0.577,-0.89" Height="56" >
<ComboBoxItem Content="Choose your media platform... " IsSelected="True" IsEnabled="False"></ComboBoxItem>
<ComboBoxItem Content=" YouTube" Name="YouTube" Selected="YT_Selected"></ComboBoxItem>
<ComboBoxItem Content=" Spotify" Name="Spotify" Selected="Spotify_Selected"></ComboBoxItem>
</ComboBox>
<Label Content="Media Platform" Foreground="Orange" FontWeight="Bold" HorizontalAlignment="Left" FontSize="30px" Margin="250,145,0,0" VerticalAlignment="Top" Height="96" Width="298"/>
<Button Content="Begin" FontWeight="Bold" Background="LightBlue" Foreground="DarkBlue" Visibility="Hidden" HorizontalAlignment="Left" Click="exBtn_Click" FontSize="25px" Name="exBtn" Margin="272,294,0,0" VerticalAlignment="Top" Height="65" Width="224"/>
<Label Content="Filum-DL " Foreground="Red" FontSize="60px" HorizontalAlignment="Left" Margin="228,60,0,0" VerticalAlignment="Top" FontWeight="Bold" Height="78" Width="370" RenderTransformOrigin="0.482,0.521"/>
<Button Content="Know About The Developer!" FontWeight="Bold" Background="LightBlue" Foreground="DarkBlue" Name="DevBtn" Click="DevBtn_Click" FontSize="20px" HorizontalAlignment="Left" Margin="391,378,0,0" VerticalAlignment="Top" Width="382" RenderTransformOrigin="0.504,0.385" Height="57"/>
<Button Content="Check Out Our Website!" FontWeight="Bold" Background="LightBlue" Foreground="DarkBlue" Name="WebBtn" Click="WebBtn_Click" FontSize="20px" HorizontalAlignment="Left" Margin="14,378,0,0" VerticalAlignment="Top" Width="363" RenderTransformOrigin="0.504,0.385" Height="57"/>
<Button Content="?" Name="Surprise" Click="Surprise_Click" FontSize="20px" FontWeight="Bold" Background="LightBlue" Foreground="DarkBlue" HorizontalAlignment="Left" Height="30" Margin="734,46,0,0" VerticalAlignment="Top" Width="35"/>
</Grid>
</Window>