зеркало из https://github.com/DeGsoft/maui-linux.git
[Controls]Use propotional values on test 1914 (#4434)
This commit is contained in:
Родитель
99b8525383
Коммит
1a424e6a83
|
@ -4,23 +4,23 @@ using Xamarin.Forms.Internals;
|
|||
|
||||
namespace Xamarin.Forms.Controls.Issues
|
||||
{
|
||||
[Preserve (AllMembers=true)]
|
||||
[Issue (IssueTracker.Github, 1914, "Android rotation ignores anchor", PlatformAffected.Android)]
|
||||
[Preserve(AllMembers = true)]
|
||||
[Issue(IssueTracker.Github, 1914, "Android rotation ignores anchor", PlatformAffected.Android)]
|
||||
public class Issue1914 : ContentPage
|
||||
{
|
||||
public Issue1914 ()
|
||||
public Issue1914()
|
||||
{
|
||||
Content = new Rotator ();
|
||||
Content = new Rotator();
|
||||
}
|
||||
|
||||
class Rotator : AbsoluteLayout
|
||||
{
|
||||
public Rotator ()
|
||||
public Rotator()
|
||||
{
|
||||
var image = new Image {Aspect = Aspect.AspectFit, Source = "bank.png"};
|
||||
Children.Add (image, new Rectangle (.5,0,100,100), AbsoluteLayoutFlags.All);
|
||||
var image = new Image { Aspect = Aspect.AspectFit, Source = "bank.png" };
|
||||
Children.Add(image, new Rectangle(.5, .5, .5, .5), AbsoluteLayoutFlags.All);
|
||||
VerticalOptions = HorizontalOptions = LayoutOptions.Center;
|
||||
image.RotateTo (3600, 10000);
|
||||
image.RotateTo(3600, 10000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче