maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Issue1914.cs

28 строки
653 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System;
using Xamarin.Forms.CustomAttributes;
namespace Xamarin.Forms.Controls
{
[Preserve (AllMembers=true)]
[Issue (IssueTracker.Github, 1914, "Android rotation ignores anchor", PlatformAffected.Android)]
public class Issue1914 : ContentPage
{
public Issue1914 ()
{
Content = new Rotator ();
}
class Rotator : AbsoluteLayout
{
public Rotator ()
{
var image = new Image {Aspect = Aspect.AspectFit, Source = "bank.png"};
Children.Add (image, new Rectangle (.5,0,100,100), AbsoluteLayoutFlags.All);
VerticalOptions = HorizontalOptions = LayoutOptions.Center;
image.RotateTo (3600, 10000);
}
}
}
}