HaoYue.CQTVShow/HaoYue.CQTVShow/HaoYue.CQTVShow.Hub/MainWindow.xaml
2018-10-05 23:55:27 +08:00

45 lines
2.1 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="605" Width="823.5">
<Grid>
<ListBox x:Name="ListBoxShow" HorizontalAlignment="Left" Height="522" VerticalAlignment="Top" Width="346" Margin="10,42,0,0" Background="#EEEEEE">
<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>
</Grid>
</controls:MetroWindow>