16 lines
684 B
Plaintext
16 lines
684 B
Plaintext
|
<UserControl x:Class="CtrEditor.ObjetosSim.ucEncoderMotor"
|
||
|
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:vm="clr-namespace:CtrEditor.ObjetosSim"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
<UserControl.DataContext>
|
||
|
<vm:osEncoderMotor />
|
||
|
</UserControl.DataContext>
|
||
|
|
||
|
<Grid Width="50" Height="50">
|
||
|
<Ellipse Fill="{Binding Color_oculto}" Stroke="DarkGray" StrokeThickness="2" Width="30" Height="30" />
|
||
|
|
||
|
</Grid>
|
||
|
</UserControl>
|