私はどのように変換の適用後、コントロールの実際の幅と実際の高さを決定することができますか?ScaleTransformを適用した後、コントロールのサイズをどのように決定できますか?
例えば、私は(400幅赤い長方形、。例えば、PIC上)XAMLコードを以下はサイズに400x400のようなものを示さなければならないと思いますが、幅と高さが200
私は何だに等しいです間違っている?私は、変換を適用した後、実際の幅と制御の実際の高さを決定するにはどうすればよい
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="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"
x:Class="VisualCad.Components.TempVisualTests.MainWindow"
mc:Ignorable="d"
x:Name="MyWin"
Title="MainWindow" WindowState="Maximized" Height="500" Width="500">
<Grid>
<Rectangle Width="400" Height="5" Fill="Red" Margin="0,20,0,0" VerticalAlignment="Top"/>
<Canvas x:Name="MyCanvas" Width="200" Height="200">
<Canvas.RenderTransform>
<ScaleTransform CenterX="100" CenterY="100" ScaleX="2" ScaleY="2" />
</Canvas.RenderTransform>
<StackPanel>
<TextBlock Text="{Binding Path=RenderSize, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Canvas}}, StringFormat='Render size: {0}'}" />
<TextBlock Text="{Binding Path=ActualWidth, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Canvas}}, StringFormat='ActualWidth: {0}'}" />
<TextBlock Text="{Binding Path=ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Canvas}}, StringFormat='ActualHeight: {0}'}" />
</StackPanel>
</Canvas>
</Grid>
</Window>
ここであなたの実際の目標は何ですか?この情報が必要なのは何ですか? –
正しいコントロールのための@EdPlunkettは、変換後に私のコントロールの手配をします。 – slavka