blob: 9049f90d1109c7c81dc7bffc3709dbebe2de6f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<UserControl x:Class="Tango.FSE.Diagnostics.Project.Widgets.Input.InputWidgetView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:visuals="clr-namespace:Tango.Visuals;assembly=Tango.Visuals"
xmlns:local="clr-namespace:Tango.FSE.Diagnostics.Project.Widgets.Input"
mc:Ignorable="d"
d:DesignHeight="83" d:DesignWidth="72" d:DataContext="{d:DesignInstance Type=local:InputWidget,IsDesignTimeCreatable=False}">
<Grid>
<Viewbox>
<Grid>
<Ellipse Width="100" Height="100" Fill="{StaticResource FSE_PrimaryBackgroundMidBrush}"></Ellipse>
<visuals:Led Width="100" Height="100" IsChecked="{Binding Value}" IsHitTestVisible="False" />
</Grid>
</Viewbox>
</Grid>
</UserControl>
|