我正在覆盖OnOrientationChanged
如下
protected override void OnOrientationChanged(OrientationChangedEventArgs e)
{
Grid.SetRow(hyperlinkButton1, 0);
Grid.SetRow(hyperlinkButton2, 1);
}
现在有了这个,我可以将网格垂直堆叠在纵向模式下。并以垂直模式水平堆叠。
但是里面的孩子是不旋转的。在横向模式下,它们看不到直立,而是与纵向模式对齐。
我如何旋转单个孩子[图像,网格等]以使它们在横向模式下也直立。