fork download
  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. 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"
  5. x:Class="StreamLabsStreamerWpf.MainWindow"
  6. x:Name="Window"
  7. Title="StreamLabs Monitoring WPF"
  8. Width="1149" Height="801" WindowState="Maximized" WindowStartupLocation="CenterScreen" Icon="windows_media_player.png">
  9. <Window.Resources>
  10. <Storyboard x:Name="Storyboard1" x:Key="Storyboard1">
  11. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="vb1">
  12. <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
  13. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="0"/>
  14. <EasingDoubleKeyFrame KeyTime="0:0:2" Value="1"/>
  15. </DoubleAnimationUsingKeyFrames>
  16. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="vb2">
  17. <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
  18. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="0"/>
  19. <EasingDoubleKeyFrame KeyTime="0:0:2" Value="1"/>
  20. </DoubleAnimationUsingKeyFrames>
  21. </Storyboard>
  22. </Window.Resources>
  23. <Window.Triggers>
  24. <EventTrigger RoutedEvent="FrameworkElement.Loaded">
  25. <BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
  26. </EventTrigger>
  27. </Window.Triggers>
  28.  
  29. <Grid x:Name="LayoutRoot" Background="Black">
  30. <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">
  31. <MediaElement.Effect>
  32. <BlurEffect x:Name="m1_blur_eff" KernelType="Box" Radius="0"/>
  33. </MediaElement.Effect>
  34. </MediaElement>
  35. <Viewbox x:Name="vb1" Stretch="Fill" Height="72" HorizontalAlignment="Left" VerticalAlignment="Top" Width="72" Margin="81.5,383,0,0">
  36. <Grid x:Name="grid_vb1" Height="185" Width="185">
  37. <Ellipse x:Name="vb1_eli" Stroke="White" StrokeThickness="7" Height="185" Width="185">
  38. <Ellipse.Effect>
  39. <BlurEffect Radius="10"/>
  40. </Ellipse.Effect>
  41. <Ellipse.Fill>
  42. <ImageBrush/>
  43. </Ellipse.Fill>
  44. </Ellipse>
  45. <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">
  46. <Path.Effect>
  47. <BlurEffect/>
  48. </Path.Effect>
  49. <Path.Fill>
  50. <ImageBrush/>
  51. </Path.Fill>
  52. </Path>
  53. <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">
  54. <Path.Effect>
  55. <BlurEffect/>
  56. </Path.Effect>
  57. <Path.Fill>
  58. <ImageBrush/>
  59. </Path.Fill>
  60. </Path>
  61. </Grid>
  62. </Viewbox>
  63. <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">
  64. <Viewbox.Effect>
  65. <BlurEffect x:Name="vb2_blur_eff" Radius="0"/>
  66. </Viewbox.Effect>
  67. <Grid x:Name="grid_vb2" Height="185" Width="185">
  68. <Ellipse x:Name="vb2_eli" Stroke="White" StrokeThickness="7" Height="185" Width="185">
  69. <Ellipse.Effect>
  70. <BlurEffect Radius="10"/>
  71. </Ellipse.Effect>
  72. <Ellipse.Fill>
  73. <ImageBrush/>
  74. </Ellipse.Fill>
  75. </Ellipse>
  76. <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">
  77. <Path.Effect>
  78. <BlurEffect/>
  79. </Path.Effect>
  80. <Path.Fill>
  81. <ImageBrush/>
  82. </Path.Fill>
  83. </Path>
  84. <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">
  85. <Path.LayoutTransform>
  86. <TransformGroup>
  87. <ScaleTransform/>
  88. <SkewTransform/>
  89. <RotateTransform Angle="45"/>
  90. <TranslateTransform/>
  91. </TransformGroup>
  92. </Path.LayoutTransform>
  93. <Path.Effect>
  94. <BlurEffect/>
  95. </Path.Effect>
  96. <Path.Fill>
  97. <ImageBrush/>
  98. </Path.Fill>
  99. </Path>
  100. <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">
  101. <Path.LayoutTransform>
  102. <TransformGroup>
  103. <ScaleTransform/>
  104. <SkewTransform/>
  105. <RotateTransform Angle="135"/>
  106. <TranslateTransform/>
  107. </TransformGroup>
  108. </Path.LayoutTransform>
  109. <Path.Effect>
  110. <BlurEffect/>
  111. </Path.Effect>
  112. <Path.Fill>
  113. <ImageBrush/>
  114. </Path.Fill>
  115. </Path>
  116. </Grid>
  117. </Viewbox>
  118. </Grid>
  119. </Window>
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty