0

好的,所以我对 GUI 开发有点了解,并且是 Windows 8(现代 UI)的新手,如果可能的话,我还想用 C#(无 XAML)来做这件事。

样式 我在这里要做的是创建一种样式,我可以将其应用于在其他地方创建的按钮。

    public static Style firstButtonStyle()
    {
        firstButton = new Style(typeof(Button));
        ControlTemplate btnControl = new ControlTemplate();

        //firstButton.Setters.Add(new Setter(Button.TemplateProperty, btnControl));
        firstButton.Setters.Add(new Setter(Button.BackgroundProperty, new SolidColorBrush(Windows.UI.Colors.Blue)));
        firstButton.Setters.Add(new Setter(Button.IsPointerOverProperty, new SolidColorBrush(Windows.UI.Colors.PaleGreen)));
        firstButton.Setters.Add(new Setter(Button.IsPressedProperty, Windows.UI.Colors.Beige));
        firstButton.Setters.Add(new Setter(Button.ForegroundProperty, Windows.UI.Colors.Red));

        return firstButton;
    }

应用

这是创建按钮和应用样式的地方。

    private Button enterButtonCreation(string text)
    {
        Button enterButton = new Button();
        enterButton.Content = text;
        enterButton.Margin = new Thickness(200, 80, 20, 0);
        Style firstButtonStyl = WikierStyle.firstButtonStyle();
        enterButton.Style = firstButtonStyl;
        enterButton.Background = new SolidColorBrush(Windows.UI.Colors.Silver);
        return enterButton;

    }

我可以使用 .Background 更改背景银色,但使用 .BackgroundProperty 时似乎没有任何反应。

4

1 回答 1

0

首先,我建议您应该尝试在 xaml 文件中完成所有样式工作,例如尝试在 xaml 页面中声明 custum 样式。如果您只想在特定页面中使用 custumstyle,则仅将其定义为您的页面。您可以在任何按钮上应用此样式。

<Page
x:Class="Appgridcheck.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Appgridcheck"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Page.Resources>
    <Style TargetType="Button" x:Name="CustomStyle" >
        <Setter Property="Background" Value="White" />
    </Style>
</Page.Resources>
    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <Button Style="{StaticResource CustomStyle}" />
</Grid>

其次,如果您想定义可以在整个应用程序中使用的全局 custumStyle(意味着在所有页面上),然后像这样在 app.xaml 中定义此样式。

<Application
x:Class="Appgridcheck.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Appgridcheck">

<Application.Resources>
    <ResourceDictionary>

        <Style TargetType="Button" x:Name="gllobalCustomstyle" >
            <Setter Property="Background" Value="Black" />
        </Style>

        <ResourceDictionary.MergedDictionaries>

            <!-- 
                Styles that define common aspects of the platform look and feel
                Required by Visual Studio project and item templates
             -->
            <ResourceDictionary Source="Common/StandardStyles.xaml"/>
        </ResourceDictionary.MergedDictionaries>

    </ResourceDictionary>
</Application.Resources>

现在您在任何页面上都使用此样式..希望这会有所帮助..

于 2013-07-09T07:17:30.840 回答