-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainPage.xaml
More file actions
95 lines (87 loc) · 3.37 KB
/
Copy pathMainPage.xaml
File metadata and controls
95 lines (87 loc) · 3.37 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TuneXtend.MainPage"
Shell.NavBarIsVisible="False">
<Grid>
<Grid.Background>
<LinearGradientBrush StartPoint="0,0"
EndPoint="1,1">
<GradientStop Color="MediumSeaGreen"
Offset="0.1"/>
<GradientStop Color="#80000000"
Offset="1.0"/>
</LinearGradientBrush>
</Grid.Background>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Frame Grid.Row="0"
Grid.RowSpan="5"
BorderColor="Transparent"
BackgroundColor="Transparent">
<WebView x:Name="abc"
BackgroundColor="Transparent"/>
</Frame>
<!--<Button Grid.Row="0"
Text="Copy Playlist Within Spotify"
Clicked="BtnCopySpotifyPlaylist_OnClicked"
FontAttributes="Italic"
FontAutoScalingEnabled="True"
BorderColor="AliceBlue"
BorderWidth=".1"
Margin="20"
BackgroundColor="MediumSeaGreen"
CornerRadius="0"
FontSize="20">
<Button.Shadow>
<Shadow Brush="Black"
Offset="-20,20"
Radius="40"
Opacity="0.3" />
</Button.Shadow>
</Button>
<Button Grid.Row="1"
Text="Copy Playlist Within Spotify"
Clicked="BtnCopySpotifyPlaylist_OnClicked"
FontAttributes="Bold"
Margin="20"
BackgroundColor="Pink"/>-->
<Button Grid.Row="2"
x:Name="BtnCopySpotifyPlaylist"
Text="Copy Playlist Within Spotify"
Clicked="BtnCopySpotifyPlaylist_OnClicked"
FontAttributes="Italic"
TextColor="Azure"
FontAutoScalingEnabled="True"
BorderColor="AliceBlue"
BorderWidth=".1"
Margin="20"
BackgroundColor="MediumSeaGreen"
CornerRadius="0"
FontSize="20">
<Button.Shadow>
<Shadow Brush="Black"
Offset="-20,20"
Radius="40"
Opacity="0.3" />
</Button.Shadow>
</Button>
<!--<Button Grid.Row="3"
Text="Copy Playlist Within Spotify"
Clicked="BtnCopySpotifyPlaylist_OnClicked"
FontAttributes="Bold"
Margin="20"
BackgroundColor="Green"/>
<Button Grid.Row="4"
Text="Copy Playlist Within Spotify"
Clicked="BtnCopySpotifyPlaylist_OnClicked"
FontAttributes="Bold"
Margin="20"
BackgroundColor="Blue"/>-->
</Grid>
</ContentPage>