我正在使用 Krypton 制作应用程序,我只是想知道您将如何更改 Krypton 面板的颜色,我曾尝试使用 BackColor,但这不起作用并且它不会改变颜色。我正在使用的代码是:
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);
如果有人可以提供帮助,将不胜感激。