language: Text (text 6.10)
date: 145 days 23 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<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://schemas.openxmlformats.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>