0

次の ResourceDictionary があります。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Style x:Key="StyleComboBox" TargetType="{x:Type ComboBox}">
        <Setter Property="BorderBrush" Value="DarkGray" />
        <Setter Property="BorderThickness" Value="1" />
        <!-- Styles for ComboBox -->
    </Style>
    <Style x:Key="StyleTextBox" TargetType="{x:Type TextBox}">
        <Setter Property="BorderBrush" Value="DarkGray" />
        <Setter Property="BorderThickness" Value="1" />
        <!-- Styles for Textbox -->
    </Style>
</ResourceDictionary>

セッターを一箇所だけ使用するにはどうすればよいですか?

4

3 に答える 3

2

wpf のスタイルは、別のスタイルから継承できます。

<Style x:Key="baseStyle" TargetType="TextBlock">
     <Setter Property="FontSize" Value="12" />
      <Setter Property="Background" Value="Orange" />
 </Style>


 <Style x:Key="boldStyle" BasedOn="{StaticResource baseStyle}" TargetType="TextBlock">
     <Setter Property="FontWeight" Value="Bold" />
 </Style>

ソース

 <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
        <Style x:Key="baseStyle" TargetType="Control">
            <Setter Property="BorderBrush" Value="DarkGray" />
            <Setter Property="BorderThickness" Value="1" />
        </Style>

        <Style x:Key="StyleComboBox" BasedOn="{StaticResource baseStyle}" TargetType="{x:Type ComboBox}">

            <!-- Styles for ComboBox -->
        </Style>
        <Style x:Key="StyleTextBox" BasedOn="{StaticResource baseStyle}" TargetType="{x:Type TextBox}">

            <!-- Styles for Textbox -->
        </Style>
    </ResourceDictionary>
于 2012-07-13T06:42:36.233 に答える
1
  <Style TargetType="Control" x:Key="Controlbase">
        <Setter Property="Control.BorderThickness" Value="10"/>
    </Style>
    <Style  x:Key="StyleComboBox" TargetType="{x:Type ComboBox}" BasedOn="{StaticResource Controlbase}">
        <Setter Property="BorderBrush" Value="DarkGray" />
        <!-- Styles for ComboBox -->
    </Style>
    <Style x:Key="StyleTextBox" TargetType="{x:Type TextBox}"  BasedOn="{StaticResource Controlbase}">
        <Setter Property="BorderBrush" Value="DarkGray" />
        <!-- Styles for Textbox -->
    </Style>

これが役立つことを願っています。

于 2012-07-13T07:06:56.933 に答える