32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<UserControl x:Class="CtrEditor.ObjetosSim.ucTuberiaFluido"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:CtrEditor.ObjetosSim"
|
|
xmlns:ctr="clr-namespace:CtrEditor">
|
|
|
|
<UserControl.DataContext>
|
|
<local:osTuberiaFluido/>
|
|
</UserControl.DataContext>
|
|
|
|
<Grid>
|
|
<Path x:Name="TuberiaPath"
|
|
Data="{Binding PathData}"
|
|
StrokeEndLineCap="Round"
|
|
StrokeStartLineCap="Round"
|
|
StrokeLineJoin="Round">
|
|
<Path.Effect>
|
|
<BlurEffect Radius="0.5"/>
|
|
</Path.Effect>
|
|
</Path>
|
|
|
|
<!-- Visualización opcional de la densidad del fluido dentro de la tubería -->
|
|
<Path x:Name="FluidoPath"
|
|
Data="{Binding PathData}"
|
|
Opacity="{Binding DensidadFluido}"
|
|
StrokeEndLineCap="Round"
|
|
StrokeStartLineCap="Round"
|
|
StrokeLineJoin="Round">
|
|
</Path>
|
|
</Grid>
|
|
</UserControl>
|