假设,我有这样的东西(在MainPage.xaml中):

<Page.Resources>
    <Style TargetType="TextBlock" x:Key="TextBlockStyle">
        <Setter Property="FontFamily" Value="Segoe UI Light" />
        <Setter Property="Background" Value="Navy" />
    </Style>
</Page.Resources>

然后,我想将该StaticResource样式应用于动态创建的TextBlock(文件MainPage.xaml.cs)。

是否有可能这样做而不是像这样做:
myTextBlock.FontFamily = new FontFamily("Segoe UI Light");
myTextBlock.Background = new SolidColorBrush(Color.FromArgb(255,0,0,128));

最佳答案

自问这个问题至今已有4年多了,但我想发表一个答案只是为了分享我的发现。

例如,如果在Style(Xamarin跨平台应用程序开发)的“应用程序”资源中描述了BlueButton App.xaml,则可以按以下方式使用它

<?xml version="1.0" encoding="utf-8" ?><Application xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         x:Class="SharedUi.App">
<Application.Resources>
    <ResourceDictionary>
        <Style x:Key="BlueButton" TargetType="Button">
            <Setter Property="TextColor" Value="White" />
            <Setter Property="FontSize" Value="20" />
            <Setter Property="BackgroundColor" Value="Blue"/>
            <Setter Property="HeightRequest" Value="70"/>
            <Setter Property="FontAttributes" Value="Bold"/>
        </Style>
    </ResourceDictionary>
</Application.Resources></Application>

然后在后面的代码中
Button newButton1 = new Button
{
    Text = "Hello",
    WidthRequest = (double)15.0,
    Style = (Style)Application.Current.Resources["BlueButton"]
};

关于c# - 在后面的代码中设置控件的StaticResource样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25584890/

10-13 06:49