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.
19 lines
702 B
19 lines
702 B
<?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"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="ex_MediaElement.MainPage">
|
|
|
|
<Grid RowDefinitions="*,Auto">
|
|
|
|
<toolkit:MediaElement
|
|
Source="embed://tacom.mp4"
|
|
ShouldAutoPlay="True"/>
|
|
<Button Grid.Row="1" Text="Jack!" Clicked="Button_Clicked"/>
|
|
<toolkit:MediaElement Grid.Row="1" IsVisible="False"
|
|
Source="embed://jack.mp3"
|
|
x:Name="jack"/>
|
|
</Grid>
|
|
|
|
</ContentPage>
|