[Mono-bugs] [Bug 418108] ToolStrip background color defaults to white

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Aug 20 14:34:33 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=418108

User jpobst at novell.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=418108#c9





--- Comment #9 from Jonathan Pobst <jpobst at novell.com>  2008-08-20 12:34:33 MDT ---
Hmm, how about running this program and reporting what you get?

using System;
using System.Drawing;

public class HelloWorld
{
        static public void Main ()
        {
                WriteColor (SystemColors.Window, "Window");
                WriteColor (SystemColors.WindowText, "WindowText");
                WriteColor (SystemColors.Menu, "Menu");
                WriteColor (SystemColors.MenuText, "MenuText");
        }

        public static void WriteColor (Color c, string type)
        {
                Console.WriteLine ("{3}: {0},{1},{2}", c.R, c.G, c.B, type);
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list