我对 c# 中的 windows 窗体有一点问题。让我们保持简单:我有一个设置默认背景颜色和前景色的方法。我有多种形式,我想从中调用它,我只想要一种方法(保持添加默认背景图像的可能性,等等......)。我应该怎么做?
这是基本代码:
public void LoadGraphics() {
this.BackColor = Graphics.GraphicsSettings.Default.BackgroundColor;
this.ForeColor = Graphics.GraphicsSettings.Default.ForegroundColor;
this.BackgroundImage = new Bitmap(Graphics.GraphicsResources.bg_small);
}