/Doctor/MainWindow.xaml
# · XAML · 19 lines · 19 code · 0 blank · 0 comment · 0 complexity · 82f8247299f166a81f382dca5d72acab MD5 · raw file
- <Window x:Class="MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="MainWindow" Height="720 " Width="1280">
- <Grid>
- <TabControl >
- <TabItem Header="Show" >
- <Grid>
- <Frame Name="TvFrame" Source="TvFrame.xaml" />
- </Grid>
- </TabItem>
- <TabItem Header="Episode" >
- <Grid>
- <Frame Name="TvFrameEpisode" Source="TvEpisodeFrame.xaml" />
- </Grid>
- </TabItem>
- </TabControl>
- </Grid>
- </Window>