作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我经常使用资源字典,但必须将它们从一个 Xaml 复制并粘贴到另一个 Xaml 以更新它们,这变得很乏味。我看到这样做的唯一方法是继承一个样式类,但我不喜欢 C# 中声明属性的方式(我更喜欢 XAML 的更直观的树语法)。有没有办法让一个 XAML 从另一个继承?或者像 LoadXaml() 这样的方法,我可以在我创建的每个 Xamarin.Forms.ContentPage 上调用它来继承 StylePage?
这是我的样式 xaml 页面:
<?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="Demo.StylePage">
<!-- Shared Properties -->
<ContentPage.Resources>
<ResourceDictionary>
<!-- TitleBar Styles -->
<Style x:Key="TitleBarStyle" TargetType="StackLayout">
<Setter Property="BackgroundColor" Value="#5db3d6"/>
<Setter Property="Padding" Value="15,6"/>
<Setter Property="HeightRequest" Value="44"/>
</Style>
<Style x:Key="TitleBarHeaderStyle" TargetType="Label">
<Setter Property="TextColor" Value="White"/>
<Setter Property="VerticalOptions" Value="CenterAndExpand"/>
<!-- <Setter Property="FontSize" Value="18"/>-->
<Setter Property="HorizontalOptions" Value="FillAndExpand"/>
</Style>
<Style x:Key="EmptyFrameStyle" TargetType="Frame">
<Setter Property="HasShadow" Value="false"></Setter>
<Setter Property="BackgroundColor" Value="Transparent"></Setter>
<Setter Property="Padding" Value="0,0"></Setter>
</Style>
</ResourceDictionary>
</ContentPage.Resources>
</ContentPage>
我如何从另一个文件加载这个资源字典?谢谢你的时间,谢尔盖。
最佳答案
ContentPages 支持继承。您始终可以定义一个 BasePage,在那里实现您的资源,然后让每个新的 ContentPage 继承它。虽然我从来没有通过继承 xaml 来做到这一点,但我曾经在我的 BasePage 的代码隐藏中共享分析、日志记录等(如下所示)。
我建议尝试类似的方法并在您的 BasePage 中实例化您的资源字典。
基础表单页面:
public class BasePage : ContentPage
{
public BasePage () : base () { }
protected override void OnAppearing ()
{
base.OnAppearing ();
AnalyticsApi.LogPageView ();
AnalyticsApi.LogEvent(Title + " Page Loaded");
}
}
子表单页面:
<?xml version="1.0" encoding="UTF-8"?>
<local:BasePage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MyApp;assembly=MyApp"
x:Class="MyApp.LoginPage"
Title="{x:Static local:Strings.SignIn}"
BackgroundColor="{x:Static local:Colors.ThemeQuaternary}">
<StackLayout>
...
</StackLayout>
</local:BasePage>
关于c# - Xamarin 表格 XAML : How can I inherit properties from another XAML file like ResourceDictionaries?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30309621/
我是一名优秀的程序员,十分优秀!