SyleProblem: Невозможно изменить BackGround определенной кнопки? - PullRequest
1 голос
/ 19 июля 2011
  1. У меня есть один ==> UserControl.
  2. Внутри этого UserControl ==> Один ItemsControl.

    Теперь ItemsControl генерирует Button’s Согласно ItemsSource, данному ему. Я дал какой-то стиль для этих кнопок.

    ==> Кнопка внутри Pages.xaml.

    ==> и Стиль внутри DataPagerResourceDictionary.xaml.

Я использую UserControl внутри моего Maindwindow.xaml. но я не могу изменить Background из определенную кнопку на основе содержимое кнопки .

Вы можете загрузить полный код с здесь .

Этот код ниже работает нормально, если я не предоставляю стиль кнопке.

for (int i = 0; i < displayPages.pageControl.Items.Count; i++)
        {
            var container = displayPages.pageControl.ItemContainerGenerator.ContainerFromIndex(i) as ContentPresenter;
            var button = container.ContentTemplate.FindName("pageNumberButton", container) as Button;
            if (button.Content == "  3  ")
            {
                button.Background = Brushes.Red;
            }
        } 

Я предоставил стиль для кнопки внутри следующего фрагмента кода [Ищите insdie Pages.xaml ].

<ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Button x:Name="pageNumberButton"  Style="{StaticResource TransparentButton}"   Content="{Binding Path=Page_Number}"></Button>
                </DataTemplate>
            </ItemsControl.ItemTemplate>

Или посмотрите ниже код:

MainWindow.xaml

<Window x:Class="StylingProblem.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        xmlns:Local="clr-namespace:StylingProblem">
    <Grid>
        <Local:Pages x:Name="displayPages"></Local:Pages>
        <Button Content="Change Color Button" Height="23" HorizontalAlignment="Left" Margin="149,164,0,0" Name="button1" VerticalAlignment="Top" Width="133" Click="button1_Click" />
    </Grid>
</Window>

MainWindow.xaml.cs

public partial class MainWindow : Window
    {
        ObservableCollection<PageNumber> pageCollection = new ObservableCollection<PageNumber>();

        public MainWindow()
        {
            InitializeComponent();
            pageCollection.Add(new PageNumber("  1  "));
            pageCollection.Add(new PageNumber("  2  "));
            pageCollection.Add(new PageNumber("  3  "));
            pageCollection.Add(new PageNumber("  4  "));
            pageCollection.Add(new PageNumber("  5  "));
            pageCollection.Add(new PageNumber("  6  "));

            this.DataContext = this;
        }

        public ObservableCollection<PageNumber> PageCollection
        {
            get
            {
                return this.pageCollection;
            }
            set
            {
                this.pageCollection = value;
            }
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            //Chage Color of Perticular button here
            //Suppose say change the color of button with content == "  3  "

            #region --  THIS CODE WORKS FINE IF I DON'T PROVIDE ANY STYLE TO BUTTON [see Pages.xaml]  --
            for (int i = 0; i < displayPages.pageControl.Items.Count; i++)
            {
                var container = displayPages.pageControl.ItemContainerGenerator.ContainerFromIndex(i) as ContentPresenter;
                var button = container.ContentTemplate.FindName("pageNumberButton", container) as Button;
                if (button.Content == "  3  ")
                {
                    button.Background = Brushes.Red;
                }
            } 
            #endregion


        }

Pages.xaml [КОНТРОЛЬ ПОЛЬЗОВАТЕЛЯ]

<UserControl x:Class="StylingProblem.Pages"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
              >
    <UserControl.Resources>
        <ResourceDictionary Source="DataPagerResourceDictionary.xaml"/>
    </UserControl.Resources>
    <Grid>
        <ItemsControl Name="pageControl" ItemsSource="{Binding Path=PageCollection}">
            <ItemsControl.Template>
                <ControlTemplate TargetType="ItemsControl">
                    <Border >
                        <StackPanel>
                            <ItemsPresenter></ItemsPresenter>
                        </StackPanel>
                    </Border>
                </ControlTemplate>
            </ItemsControl.Template>
            <ItemsControl.ItemsPanel x:Uid="pageItemTemplate">
                <ItemsPanelTemplate>
                    <StackPanel Orientation="Horizontal"/>
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Button x:Name="pageNumberButton" Style="{StaticResource TransparentButton}"  Content="{Binding Path=Page_Number}"></Button>
                </DataTemplate>
            </ItemsControl.ItemTemplate>

        </ItemsControl>
    </Grid>
</UserControl>

СТИЛЬ КНОПКИ: DataPagerResourceDictionary.xaml

<ResourceDictionary
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   >
    <Style TargetType="Button" x:Key="TransparentButton">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="Button">
                    <Border  CornerRadius="2,2,2,2"  HorizontalAlignment="Center" x:Name="borderTemplate" Background="Transparent">
                        <ContentPresenter/>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="true">
                            <Setter TargetName="borderTemplate"  Property="Border.BorderBrush" Value="Gray" />
                            <Setter TargetName="borderTemplate"  Property="Border.BorderThickness" Value="1" />
                        </Trigger>
                        <Trigger Property="IsPressed" Value="true">
                            <Setter TargetName="borderTemplate"  Property="Border.BorderBrush" Value="Lime" />
                        </Trigger>
                        <Trigger Property="IsFocused" Value="true">
                            <Setter TargetName="borderTemplate"  Property="Border.Background" Value="#FD7" />
                        </Trigger>
                        <Trigger Property="IsEnabled" Value="false">
                            <Setter TargetName="borderTemplate"  Property="Border.Background" Value="LightGray"></Setter>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

Спасибо ...................................

1 Ответ

4 голосов
/ 19 июля 2011

Вы перезаписываете шаблон кнопки в своем стиле, поэтому цвет фона никогда не используется

Шаблон кнопки по умолчанию выглядит следующим образом:

<Button Background="SomeColor">
    <Button.Content>
</Button>

И вы перезаписываете шаблон, чтобы сказать

<Border>
    <Button.Content>
</Border>

Вам необходимо привязать цвет фона границы к {TemplateBinding Background}, чтобы он использовал цвет фона кнопки.

Я бы также предложил использовать DataTrigger вместо кода позадиизменить цвет фона кнопки.

<Style TargetType="{x:Type Button}">
    <Setter Property="Background" Value="Transparent" />
    <Style.Triggers>
        <DataTrigger Binding="{Binding }" Value="3">
            <Setter Property="Background" Value="Red" />
        </DataTrigger>
    </Style.Triggers>
</Style>   
...