CtrEditor/ObjetosSim/ucTransporteTTop.xaml

14 lines
664 B
Plaintext
Raw Normal View History

<UserControl x:Class="CtrEditor.ObjetosSim.ucTransporteTTop"
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:local="clr-namespace:CtrEditor"
2024-05-04 10:53:47 -03:00
mc:Ignorable="d"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Canvas>
<Rectangle Width="{Binding Datos.Ancho}" Height="{Binding Datos.Alto}" Fill="Gray"/>
</Canvas>
</UserControl>
2024-05-04 10:53:47 -03:00