1

我试图理解为什么ScaleTransform(在 Windows Phone 8.0 下测试)使用控件的父尺寸而不是控件本身呈现。我已经设置了一个演示应用程序来显示这种行为,如下所示。

维度和层次结构是有原因的,这就是我手动设置Widthand的原因Height,因为它非常接近真实的应用程序。

我所期望的是child1(黄色的),它768x1228的比例是 并且具有,0.625它会将自己呈现为480x768好像)。300x4800.625%480768

有什么线索吗?

public partial class MainPage : PhoneApplicationPage
{
    private Grid root;

    public MainPage()
    {
        InitializeComponent();
        root = new Grid() {
            Width = 480,
            Height = 768,
            HorizontalAlignment = HorizontalAlignment.Left,
            VerticalAlignment = VerticalAlignment.Top,
            Background = new SolidColorBrush(Colors.Blue)
        };
        Content = root;
        Loaded += MainPage_Loaded;
    }

    void MainPage_Loaded(object sender, RoutedEventArgs e)
    {
        var parent1 = new Grid {
            Background = new SolidColorBrush(Colors.Red),
            HorizontalAlignment = HorizontalAlignment.Left,
            VerticalAlignment = VerticalAlignment.Top,
            Width = 480,
            Height = 768
        };

        root.Children.Add(parent1);

        var child1 = new Grid {
            Background = new SolidColorBrush(Colors.Yellow),
            Width = 768,
            HorizontalAlignment = HorizontalAlignment.Left,
            VerticalAlignment = VerticalAlignment.Top,
            Height = 1228,
            RenderTransform = new ScaleTransform() {
                CenterX = 0,
                CenterY = 0,
                ScaleX = 0.625,
                ScaleY = 0.625
            }
        };

        parent1.Children.Add(child1);
    }
}    
4

1 回答 1

1

好吧,看起来这完全是由于Grid组件剪辑了它的子元素,如http://wpf.2000things.com/tag/clipping所述。在我更改代码以Canvas搁浅 myGrid后,该应用程序按预期工作。

不过,我仍然觉得这个“解决方案”很奇怪。

于 2014-09-18T18:32:40.577 回答