在列表中选择朋友时,如何在Skype中使用此蓝色背景?

时间:2012-07-31 07:55:31

标签: winforms colors skype

我认为它是渐变之王,但我无法分辨。 我想在我的WinForms应用程序中使用它。

enter image description here

1 个答案:

答案 0 :(得分:0)

最简单的方法是使用像Paint.Net这样的程序来获取绘图中使用的颜色的RGB值。

以面板为例:

void panel1_Paint(object sender, PaintEventArgs e) {
  e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;

  using (LinearGradientBrush br = new LinearGradientBrush(
                                  panel1.ClientRectangle,
                                  Color.FromArgb(52, 151, 254),
                                  Color.FromArgb(61, 129, 243),
                                  LinearGradientMode.Vertical)) {
    e.Graphics.FillRectangle(br, panel1.ClientRectangle);
  }

  using (Pen p = new Pen(Color.FromArgb(37, 110, 184), 2)) {
    e.Graphics.DrawRectangle(p, 0, 0,
                             panel1.ClientSize.Width - 1,
                             panel1.ClientSize.Height - 1);
  }
}

结果:

enter image description here

非常接近原版。您可以通过淡化或变暗使用的颜色来进行调整。