如何在xamarin.form中设置从右到左的方向与在wpf中的flowdirection中使用的进程相同

时间:2016-11-23 18:29:01

标签: xaml xamarin.forms

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="App10.Page1"  >
    <ContentPage.Conte`FlowDirection` >

    </ContentPage.Content>
</ContentPage>

如何在xamarin.form中设置从右到左的方向与wpf中的flowdirection中使用的进程相同

1 个答案:

答案 0 :(得分:0)

首先,据我所知,在Xamarin.Form中没有设置flowdirection的属性。

所以我认为您可以使用其他方法来布局您的视图,例如RelativeLayout 并设置一个相对位置,使视图在XAML或c#代码中从右到左。我认为它更灵活。

使用RelativeLayout的文件:

https://developer.xamarin.com/guides/xamarin-forms/user-interface/layouts/relative-layout/