HiddenWindow.xaml 544 B

123456789
  1. <Window x:Class="MediaBrowser.UI.HiddenWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Media Browser Theater"
  5. WindowStartupLocation="Manual" ResizeMode="NoResize" WindowStyle="None" BorderThickness="1" Background="Black">
  6. <Grid x:Name="MainGrid">
  7. <my:WindowsFormsHost Name="WindowsFormsHost" xmlns:my="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration" />
  8. </Grid>
  9. </Window>