Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

PROYECTO 3_PARCIAL 3

CS:
Namespace actividad_3_p3;

publicpartialclassNewPage1: ContentPage

PublicNewPage1()

InitializeComponent();

WebView webvView = newWebView

Source = "https://acekey.000webhostapp.com//storemusic.html "

};

XAML:
<?xml version="1.0" encoding="utf-8"
?><ContentPagexmlns="http://schemas.microsoft.com/dotnet/2021/maui"

xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="actividad_3_p3.NewPage1"Title="NewPage1">

<HorizontalStackLayout>

<WebViewSource="https://acekey.000webhostapp.com//storemusic.html"WidthRequest="15
00" /

></HorizontalStackLayout></ContentPage>

Namespace actividad_3_p3;

publicpartialclassNewPage: ContentPage

PublicNewPage()

InitializeComponent();

WebView webvView = newWebView

Source = "https://acekey.000webhostapp.com//compras.php"

};

XAML:
<?xml version="1.0" encoding="utf-8"
?><ContentPagexmlns="http://schemas.microsoft.com/dotnet/2021/maui"

xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="actividad_3_p3.NewPage"Title="NewPage1">

<HorizontalStackLayout>

<WebViewSource="https://acekey.000webhostapp.com//compras.php
"WidthRequest="1500" /

></HorizontalStackLayout></ContentPage>

Pdta: Ando trabajando en el diseño de la página de compras

You might also like