vote up 2 vote down star

Hello,

I am attempting to set the background color for a list box in code. I can get it to work with the list box item, but not the list box itself.

Here is the code that works (with the ListBoxItem):

        private void SetBackgroundGradient()
    {
        var styleListBox = new Style(typeof(ListBoxItem));

        var myBrush = new LinearGradientBrush();
        myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(255, 0, 0, 0), 0.0));
        myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(255, 255, 255, 255), 1.0));


        styleListBox.Setters.Add(new Setter
        {
            Property = BackgroundProperty,
            Value = myBrush
        });

        lstTopics.ItemContainerStyle = styleListBox;
    }

Now, if i change the code to try to work with the ListBox itself, all I get is a white background. Here is the code for that:

private void SetBackgroundGradient()
    {
        var styleListBox = new Style(typeof(ListBox));

        var myBrush = new LinearGradientBrush();
        myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(255, 0, 0, 0), 0.0));
        myBrush.GradientStops.Add(new GradientStop(Color.FromArgb(255, 255, 255, 255), 1.0));


        styleListBox.Setters.Add(new Setter
        {
            Property = BackgroundProperty,
            Value = myBrush
        });

        lstTopics.Style = styleListBox;
    }

Any idea what I might be doing wrong?

If you need any clarification on what I am asking, please let me know.

Thanks in advance.

flag

Your sample code worked fine for me. Perhaps you could add the bit where you call the function, and the XAML? – Cameron MacFarland May 10 at 1:29
Wow, so you were able to set the background of the listbox? Interesting.. let me create a new project with just the listbox and see if I am doing something wrong in my main project – Jason Heine May 10 at 3:08

1 Answer

vote up 3 vote down check

I solved my own issue. It was due to my own error.

I had the following in the ListBox attributes:

Background="{x:Null}"

I have no idea how that got there. Possibly somehow set by default.

Well, it is solved. The code above works. You can set the background of the list box as a gradient via code as long as you don't have the Background = null set :)

Thanks

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.