<Window
    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://s...content-available-to-author-only...s.org/markup-compatibility/2006" mc:Ignorable="d"
	x:Class="StreamLabsStreamerWpf.MainWindow"
	x:Name="Window"
	Title="StreamLabs Monitoring WPF"
	Width="1149" Height="801" WindowState="Maximized" WindowStartupLocation="CenterScreen" Icon="windows_media_player.png">
	<Window.Resources>
        <Storyboard x:Name="Storyboard1" x:Key="Storyboard1">
			<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="vb1">
				<EasingDoubleKeyFrame KeyTime="0" Value="0"/>
				<EasingDoubleKeyFrame KeyTime="0:0:1" Value="0"/>
				<EasingDoubleKeyFrame KeyTime="0:0:2" Value="1"/>
			</DoubleAnimationUsingKeyFrames>
			<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="vb2">
				<EasingDoubleKeyFrame KeyTime="0" Value="0"/>
				<EasingDoubleKeyFrame KeyTime="0:0:1" Value="0"/>
				<EasingDoubleKeyFrame KeyTime="0:0:2" Value="1"/>
			</DoubleAnimationUsingKeyFrames>
		</Storyboard>
	</Window.Resources>
	<Window.Triggers>
		<EventTrigger RoutedEvent="FrameworkElement.Loaded">
			<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
		</EventTrigger>
	</Window.Triggers>

	<Grid x:Name="LayoutRoot" Background="Black">
		<MediaElement x:Name="m1" Source="6_Sony_Sean_Kingston_Beautiful_girls.wmv" UnloadedBehavior="Play" Height="379" Width="506" HorizontalAlignment="Left" VerticalAlignment="Top" d:LayoutOverrides="HorizontalAlignment">
			<MediaElement.Effect>
				<BlurEffect x:Name="m1_blur_eff" KernelType="Box" Radius="0"/>
			</MediaElement.Effect>
		</MediaElement>
		<Viewbox x:Name="vb1" Stretch="Fill" Height="72" HorizontalAlignment="Left" VerticalAlignment="Top" Width="72" Margin="81.5,383,0,0">
			<Grid x:Name="grid_vb1" Height="185" Width="185">
				<Ellipse x:Name="vb1_eli" Stroke="White" StrokeThickness="7" Height="185" Width="185">
					<Ellipse.Effect>
						<BlurEffect Radius="10"/>
					</Ellipse.Effect>
					<Ellipse.Fill>
						<ImageBrush/>
					</Ellipse.Fill>
				</Ellipse>
				<Path x:Name="vb1_p1" Data="M783,312 L783,235" HorizontalAlignment="Left" Margin="74,53,0,48" Stretch="Fill" Stroke="White" StrokeThickness="7" Width="7">
					<Path.Effect>
						<BlurEffect/>
					</Path.Effect>
					<Path.Fill>
						<ImageBrush/>
					</Path.Fill>
				</Path>
				<Path x:Name="vb1_p2" Data="M783,312 L783,235" HorizontalAlignment="Right" Margin="0,53,76,48" Stretch="Fill" Stroke="White" StrokeThickness="7" Width="7">
					<Path.Effect>
						<BlurEffect/>
					</Path.Effect>
					<Path.Fill>
						<ImageBrush/>
					</Path.Fill>
				</Path>
			</Grid>
		</Viewbox>
		<Viewbox x:Name="vb2" Stretch="Fill" Height="72" HorizontalAlignment="Left" VerticalAlignment="Top" Width="72" Margin="5.5,383,0,0" MouseEnter="vb1_on_mouse_over" MouseLeave="vb1_off_mouse_over" MouseLeftButtonDown="vb1_click">
			<Viewbox.Effect>
				<BlurEffect x:Name="vb2_blur_eff" Radius="0"/>
			</Viewbox.Effect>
			<Grid x:Name="grid_vb2" Height="185" Width="185">
				<Ellipse x:Name="vb2_eli" Stroke="White" StrokeThickness="7" Height="185" Width="185">
					<Ellipse.Effect>
						<BlurEffect Radius="10"/>
					</Ellipse.Effect>
					<Ellipse.Fill>
						<ImageBrush/>
					</Ellipse.Fill>
				</Ellipse>
				<Path x:Name="vb2_p1" Data="M783,312 L783,235" HorizontalAlignment="Left" Margin="74,54.713,0,48" Stretch="Fill" Stroke="White" StrokeThickness="7" Width="7">
					<Path.Effect>
						<BlurEffect/>
					</Path.Effect>
					<Path.Fill>
						<ImageBrush/>
					</Path.Fill>
				</Path>
				<Path x:Name="vb2_p2" Data="M783,312 L783,235" HorizontalAlignment="Right" Margin="0,70.13,64.437,30.87" Stretch="Fill" Stroke="White" StrokeThickness="7" Width="7">
					<Path.LayoutTransform>
						<TransformGroup>
							<ScaleTransform/>
							<SkewTransform/>
							<RotateTransform Angle="45"/>
							<TranslateTransform/>
						</TransformGroup>
					</Path.LayoutTransform>
					<Path.Effect>
						<BlurEffect/>
					</Path.Effect>
					<Path.Fill>
						<ImageBrush/>
					</Path.Fill>
				</Path>
				<Path x:Name="vb3_p3" Data="M783,312 L783,235" HorizontalAlignment="Right" Margin="0,37.438,64.009,63.562" Stretch="Fill" Stroke="White" StrokeThickness="7" Width="7">
					<Path.LayoutTransform>
						<TransformGroup>
							<ScaleTransform/>
							<SkewTransform/>
							<RotateTransform Angle="135"/>
							<TranslateTransform/>
						</TransformGroup>
					</Path.LayoutTransform>
					<Path.Effect>
						<BlurEffect/>
					</Path.Effect>
					<Path.Fill>
						<ImageBrush/>
					</Path.Fill>
				</Path>
			</Grid>
		</Viewbox>
	</Grid>
</Window>