36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:TV_Player.MAUI"
|
|
x:Class="TV_Player.MAUI.MainPage">
|
|
<ContentPage.BindingContext>
|
|
<local:MainViewModel />
|
|
</ContentPage.BindingContext>
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Padding="30,0"
|
|
VerticalOptions="Center">
|
|
|
|
<CollectionView ItemsSource="{Binding Programs}"
|
|
ItemsLayout="VerticalGrid, 5" SelectionMode="Single"
|
|
SelectedItem="{Binding SelectedItem}"
|
|
SelectionChangedCommand="{Binding ItemSelectedCommand}">
|
|
<CollectionView.ItemTemplate>
|
|
<DataTemplate x:DataType="local:M3UInfo">
|
|
<Label Text="{Binding Name}"/>
|
|
</DataTemplate>
|
|
</CollectionView.ItemTemplate>
|
|
</CollectionView>
|
|
|
|
<!--<Label
|
|
Text="Welcome to .NET Multi-platform App UI"
|
|
SemanticProperties.HeadingLevel="Level2"
|
|
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
|
|
FontSize="18"
|
|
HorizontalOptions="Center" />-->
|
|
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|