Sep 5, 2006 #1 bugzy MIS Joined Feb 24, 2006 Messages 9 Location US Hi all, I've created a custom statusbar for a form, is there any way to change the backcolor of this control. _statusbar.BackColor = Color.Black; //doesn't work. Thanks.
Hi all, I've created a custom statusbar for a form, is there any way to change the backcolor of this control. _statusbar.BackColor = Color.Black; //doesn't work. Thanks.
Sep 5, 2006 #2 JurkMonkey Programmer Joined Nov 23, 2004 Messages 1,731 Location CA My guess is you're using WindowsXP? If this is the case then you have to Disable visual styles. Upvote 0 Downvote
Sep 5, 2006 Thread starter #3 bugzy MIS Joined Feb 24, 2006 Messages 9 Location US My guess is you're using WindowsXP? If this is the case then you have to Disable visual styles. Click to expand... I disable the visual style, and it still doesn't work... Here's what I saw at MSDN: Code: public override Color BackColor { get; set; } But I don't know how to use this. Upvote 0 Downvote
My guess is you're using WindowsXP? If this is the case then you have to Disable visual styles. Click to expand... I disable the visual style, and it still doesn't work... Here's what I saw at MSDN: Code: public override Color BackColor { get; set; } But I don't know how to use this.
Sep 5, 2006 #4 JurkMonkey Programmer Joined Nov 23, 2004 Messages 1,731 Location CA it may rely purely on the forms backcolor. Upvote 0 Downvote