我是Xamarin和iOS的新手。我正在使用Xamarin在Visual Studio中制作应用程序。我想将我的按钮从右侧移动到左侧。因为我使用下面的代码:
fabButton.SetImage(UIImage.FromFile("Plus Math-24"), UIControlState.Normal);
pt = fabButton.Center;
UIView.Animate(2, 0, UIViewAnimationOptions.CurveEaseInOut,
() => {
fabButton.Center = new CGPoint(UIScreen.MainScreen.Bounds.Left - fabButton.Frame.Width / 15, fabButton.Center.Y);},
() => {
fabButton.Center = pt;}
);
我的按钮正在移动,但它回到了我以前的位置。任何帮助都要得到赞赏。
这是我的形象:
UpDate:
当我尝试不同的代码时,它会更好用
更改代码:
UIView.Animate(2, 0, UIViewAnimationOptions.CurveEaseInOut,
() =>
{
fabButton.Center = new CGPoint(50,611);
},
() =>
{
}
);
正常屏幕:
点击按钮时:
但它有一些问题按钮在某个高度上方..