Bonjour, voici un extrait de code WPF pour faire pivoter un label en son centre à l'aide d'un slider.
Avec LayoutTransform, le pivotement n'est pas au centre. Mais çà fonctionne si je remplace par RenderTransform.
Quelqu'un a une explication ? Merci d'avance
<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Label Content="Label" HorizontalAlignment="Left" Height="63" Margin="244,190,0,0" VerticalAlignment="Top" Width="219" Background="#FF6FE446">
<Label.LayoutTransform>
<RotateTransform CenterX="110" CenterY="32 " Angle="{Binding ElementName=sld, Path=Value}"></RotateTransform>
</Label.LayoutTransform>
</Label>
<Slider x:Name="sld" HorizontalAlignment="Left" Height="49" Margin="244,324,0,0" VerticalAlignment="Top" Width="315" Minimum="0" Maximum="90"/>
</Grid>
</Window>
Partager