Xamarin.ios 重新定位视图
Posted iZKang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin.ios 重新定位视图相关的知识,希望对你有一定的参考价值。
//旋转手机重新定位视图 /// <summary> /// 重新定位视图 /// </summary> /// <param name="toInterfaceOrientation">To interface orientation.</param> /// <param name="duration">Duration.</param> public override void WillRotate(UIInterfaceOrientation toInterfaceOrientation, double duration) { UIInterfaceOrientation destOrientation = toInterfaceOrientation; //判断选择方向 if (destOrientation == UIInterfaceOrientation.LandscapeLeft | destOrientation == UIInterfaceOrientation.LandscapeRight) { vv.Frame = new RectangleF(0, 0, 667, 375); } else { vv.Frame = new RectangleF(0, 0, 375,667); } }
以上是关于Xamarin.ios 重新定位视图的主要内容,如果未能解决你的问题,请参考以下文章
Xamarin IOS - Xamarin IOS 中的轮播视图(图像)