web-dev-qa-db-ja.com

WPFで実行時にスタイルを変更する

ユーザーがWPFアプリケーションの要素をカスタマイズできるようにしようとしています。私が達成しようとしているのは、すべてのフォーム要素(TextBox、ラベルなど)を指定するリストボックスがある場合、ユーザーは1つのフォーム要素を選択し、スタイルプロパティをLabelと設定でき、前景はオレンジ色になるはずですTextBoxの前景は黒などである必要があります。そして、私がどんなスタイルを適用しようと考えているとしても、すべてのTextBoxは同じように見えるはずです。

私はこれを達成する方法を見つけ出すことができません。複数の定義済みスタイルを実行時にアップロードできる例を試しました。そこで、実行時にさまざまな要素のプロパティを変更する方法を見つけたいと思います。

UPDATE:

コードビハインドから新しいスタイルを作成しようとしました。

XAML

<Label Content="SAMPLE" Style="{DynamicResource Style1}" x:Name="label1" />
<Button Content="Button" Click="Button_Click" />

そして、背後にあるコードで、つまりボタンをクリックすると、これを試しました:

Style style = new Style { TargetType = typeof(Label) };
style.Setters.Add(new Setter(Control.ForegroundProperty, Brushes.Black));
Application.Current.Resources["Style1"] = style;

しかし、それは更新されていません。

ありがとう。

17
ds345

スタイルがファイルにあることを確認する必要がありますApp.xaml

<Application x:Class="ChangeStyleHelp.App"
         xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
         StartupUri="MainWindow.xaml">

    <Application.Resources>
        <Style x:Key="MyStyle" TargetType="{x:Type Label}">
            <Setter Property="Background" Value="Green" />
        </Style>
    </Application.Resources>
</Application>

コードビハインド:

private void ChangeStyle_Click(object sender, RoutedEventArgs e)
{
    Style style = new Style 
    { 
        TargetType = typeof(Label) 
    };

    style.Setters.Add(new Setter(Label.BackgroundProperty, Brushes.Aquamarine));

    Application.Current.Resources["MyStyle"] = style;
}   

StyleWindowWindow.Resources)、this、またはWindowの名前を記述する必要があります。

private void ChangeStyle_Click(object sender, RoutedEventArgs e)
{
    Style style = new Style 
    { 
        TargetType = typeof(Label) 
    };

    style.Setters.Add(new Setter(Label.BackgroundProperty, Brushes.Aquamarine));

    this.Resources["MyStyle"] = style;
}   

また、この方法でStyleを変更できます。既存のスタイルを使用して、要素を使用します。例:

<Application x:Class="ChangeStyleHelp.App"
         xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
         StartupUri="MainWindow.xaml">

    <Application.Resources>
        <Style x:Key="AnotherWayStyle" TargetType="{x:Type Label}">
            <Setter Property="Background" Value="Lavender" />
            <Setter Property="Foreground" Value="OrangeRed" />
        </Style>
    </Application.Resources>
</Application>  

コードビハインド:

private void AnotherWay_Click(object sender, RoutedEventArgs e)
{
    label1.Style = (Style)Application.Current.Resources["AnotherWayStyle"];
}   
31

Resource Dictionariesを使用してみましたか?

リソース辞書

<ResourceDictionary
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml">
<SolidColorBrush x:Key="TextColor" Color="#FF121212"/>
</ResourceDictionary>

コントロールのXAML

<TextBox Text="TextBox" Foreground="{DynamicResource TextColor}" />

実行時にスタイルを変更するコード

     var rd = new ResourceDictionary();
     rd.Add("TextColor", "#FFFFFF");
     Application.Current.Resources.MergedDictionaries.Add(rd);

これにより、新しいスタイルが既存のスタイルとマージされ、変更はそれらのスタイルにリンクされているすべてのコントロールに自動的に反映されます。

6
Sylens

それは魅力のように私のために働いた:

Xaml:

<TreeView x:Name="TreePeople">
    <TreeView.ItemContainerStyle>
        <Style TargetType="{x:Type TreeViewItem}">
            <Setter Property="IsExpanded" Value="True" />
        </Style>
    </TreeView.ItemContainerStyle>
</TreeView> 

c#:

bool Expanded = false; 
// The event subscription method (for a button click)
private void ButtonExpand__Click(object sender, RoutedEventArgs e)
{
    Expanded = !Expanded;
    Style Style = new Style
    {
        TargetType = typeof(TreeViewItem)
    };

    Style.Setters.Add(new Setter(TreeViewItem.IsExpandedProperty, Expanded));
    TreePeople.ItemContainerStyle = Style;
}