PageRenderTime 55ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Doctor/MainWindow.xaml

#
XAML | 19 lines | 19 code | 0 blank | 0 comment | 0 complexity | 82f8247299f166a81f382dca5d72acab MD5 | raw file
Possible License(s): GPL-2.0
  1. <Window x:Class="MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="MainWindow" Height="720 " Width="1280">
  5. <Grid>
  6. <TabControl >
  7. <TabItem Header="Show" >
  8. <Grid>
  9. <Frame Name="TvFrame" Source="TvFrame.xaml" />
  10. </Grid>
  11. </TabItem>
  12. <TabItem Header="Episode" >
  13. <Grid>
  14. <Frame Name="TvFrameEpisode" Source="TvEpisodeFrame.xaml" />
  15. </Grid>
  16. </TabItem>
  17. </TabControl>
  18. </Grid>
  19. </Window>