2024-05-04 06:00:52 -03:00
|
|
|
<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"
|
2024-05-08 08:41:26 -03:00
|
|
|
mc:Ignorable="d"
|
2024-05-11 11:58:55 -03:00
|
|
|
xmlns:convert="clr-namespace:CtrEditor.Convertidores">
|
2024-05-08 08:41:26 -03:00
|
|
|
|
|
|
|
<UserControl.Resources>
|
2024-05-11 11:58:55 -03:00
|
|
|
<convert:MeterToPixelConverter x:Key="MeterToPixelConverter"/>
|
2024-05-08 08:41:26 -03:00
|
|
|
</UserControl.Resources>
|
2024-05-10 20:40:51 -03:00
|
|
|
|
|
|
|
<Canvas>
|
2024-05-14 03:15:54 -03:00
|
|
|
<Rectangle x:Name="Transporte" Width="{Binding Ancho, Converter={StaticResource MeterToPixelConverter}}" Height="{Binding Alto, Converter={StaticResource MeterToPixelConverter}}" Fill="Gray">
|
2024-05-10 20:40:51 -03:00
|
|
|
<Rectangle.RenderTransform>
|
|
|
|
<RotateTransform Angle="{Binding Angulo}"/>
|
|
|
|
</Rectangle.RenderTransform>
|
|
|
|
</Rectangle>
|
2024-05-04 10:53:47 -03:00
|
|
|
</Canvas>
|
2024-05-04 16:27:04 -03:00
|
|
|
|
2024-05-04 06:00:52 -03:00
|
|
|
</UserControl>
|
2024-05-04 10:53:47 -03:00
|
|
|
|