我想建立與sytacklayout特定的填充幾頁。我不想寫在每一頁。考慮到未來我想改變它,它的設計並不好。有沒有辦法在靜態資源中定義填充?所以,我可以在一個地方App.xml
定義,並在其他頁面中使用它。Xamarin表格填充在靜態資源
我已經試過
<ContentPage.Resources>
<ResourceDictionary>
<x:String x:Key="padding">45, 0, 45, 0</x:String>
</ResourceDictionary>
</ContentPage.Resources>
<StackLayout Padding="{StaticResource padding}">
<Label Text="{StaticResource padding}"/>
</StackLayout>
https://developer.xamarin.com/guides/xamarin-forms/user-interface/styles/application/ – EvZ
是可以使用StaticResource。我已經用風格解決了它。但我需要使用靜態資源。爲一個物業定義樣式對我來說不太合適。請指教。並感謝您的答覆。 – Atiq