-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
12 lines (12 loc) · 846 Bytes
/
Copy pathMainWindow.xaml
File metadata and controls
12 lines (12 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<Window x:Class="WPF.Angle.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<WindowsFormsHost Initialized="WindowsFormsHost_Initialized" Margin="0,0,140.209,0.183">
</WindowsFormsHost>
<Slider Orientation="Vertical" Value="1" Minimum="0" Maximum="1" Name="Red" Margin="385,0,-385.791,0.183" ValueChanged="Slider_ValueChanged"/>
<Slider Orientation="Vertical" Value="0" Minimum="0" Maximum="1" Name="Green" Margin="429,0,-428.791,0.183" ValueChanged="Slider_ValueChanged"/>
<Slider Orientation="Vertical" Value="0" Minimum="0" Maximum="1" Name="Blue" Margin="476,0,-475.791,0.183" ValueChanged="Slider_ValueChanged"/>
</Grid>
</Window>