CtrEditor/ObjetosSim/Dinamicos/ucBotellaCuello.xaml

15 lines
647 B
Plaintext
Raw Normal View History

2024-05-31 10:06:49 -03:00
<UserControl x:Class="CtrEditor.ObjetosSim.ucBotellaCuello"
2024-05-30 13:48:37 -03:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2024-05-31 10:06:49 -03:00
xmlns:vm="clr-namespace:CtrEditor.ObjetosSim">
2024-05-30 13:48:37 -03:00
<UserControl.DataContext>
2024-05-31 10:06:49 -03:00
<vm:osBotellaCuello/>
2024-05-30 13:48:37 -03:00
</UserControl.DataContext>
<Ellipse Height="{Binding Diametro, Converter={StaticResource MeterToPixelConverter}}"
Stroke="{Binding ColorButton_oculto}" Fill="Gray"
Width="{Binding Diametro, Converter={StaticResource MeterToPixelConverter}}" StrokeThickness="0.5"/>
</UserControl>