HaoYue.CQTVShow/HaoYue.CQTVShow/HaoYue.CQTVShow.Hub/MainWindow.xaml

52 lines
2.9 KiB
XML

<controls:MetroWindow x:Class="HaoYue.CQTVShow.Hub.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:HaoYue.CQTVShow.Hub"
xmlns:controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
mc:Ignorable="d"
Title="皓月云-重庆电视台本土节目播放器" Height="621" Width="1039.5" Background="#FFFFFF">
<Grid>
<ListBox x:Name="ListBoxShow" HorizontalAlignment="Left" Height="503" VerticalAlignment="Top" Width="409" Margin="6,47,0,0"
SelectionChanged="ListBoxSelectionChanged"
>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image
Width="150" Margin="3,3,0,3"
Source="{Binding Path=ImageSrc}">
</Image>
<StackPanel>
<Label Content="{Binding Path=Title}" Margin="0,3" FontSize="18" FontWeight="Bold"></Label>
<Label Content="{Binding Path=Time}" Margin="0,5,0,3" FontSize="15"></Label>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<TabControl x:Name="TabMeun" HorizontalAlignment="Left" Height="40" VerticalAlignment="Top" Width="505" Margin="7,2,0,0" SelectionChanged="MeunTabSelect">
<TabItem Header="生活麻辣烫">
<Grid Background="#FFE5E5E5"/>
</TabItem>
<TabItem Header="冷暖人生">
<Grid Background="#FFE5E5E5"/>
</TabItem>
<TabItem Header="麻辣故事会">
<Grid Background="#FFE5E5E5"/>
</TabItem>
</TabControl>
<Label x:Name="LabelState" Content="状态" HorizontalAlignment="Left" Margin="7,555,0,0" VerticalAlignment="Top"/>
<Image x:Name="Image_SelectedShow" HorizontalAlignment="Left" MaxHeight="300" MaxWidth="300" Margin="450,40,0,0" VerticalAlignment="Top" />
<Label x:Name="Label_SelectedName" Content="-" HorizontalAlignment="Left" Margin="450,310,0,0" VerticalAlignment="Top"
FontSize="20" FontWeight="Bold"/>
<Label x:Name="Label_SelectedTime" Content="-" HorizontalAlignment="Left" Margin="450,350,0,0" VerticalAlignment="Top"
FontSize="18" FontWeight="Bold"/>
<Button x:Name="BtnPlay" Content="播 放" HorizontalAlignment="Left" Margin="459,400,0,0" VerticalAlignment="Top" Width="75"
FontSize="18" FontWeight="Bold" Click="PlayMedia"/>
</Grid>
</controls:MetroWindow>