I am making an application using Krypton and I just wondered how you would change the color of a Krypton Panel, I have tried to use BackColor, however this does not work and it does not change the color. The code I am using is:
var newPanel = new KryptonPanel();
newPanel.Name = "newPanel";
newPanel.Width = 500;
newPanel.Height = 200;
newPanel.Location = new Point(0, (panelCount == 0 ? 0 : lastPanel.Location.Y) + (panelCount == 0 ? 0 : newPanel.Height) + 0);
newPanel.BackColor = Color.Aqua;
drivesPnl.Controls.Add(newPanel);
If anyone could help with this, it would be greatly appreciated.