本文整理汇总了C#中Color.MakeShaded方法的典型用法代码示例。如果您正苦于以下问题:C# Color.MakeShaded方法的具体用法?C# Color.MakeShaded怎么用?C# Color.MakeShaded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Color
的用法示例。
在下文中一共展示了Color.MakeShaded方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RenderDepressedCircularButton
private static void RenderDepressedCircularButton(this Graphics Graphics, Rectangle ClientRectangle, Color BackGroundColor, Single Depth = 1)
{
using (var pen = new Pen(BackGroundColor, Depth))
using (var brush = new System.Drawing.Drawing2D.LinearGradientBrush(ClientRectangle, BackGroundColor.MakeShaded(50), BackGroundColor.MakeHilighted(10), LinearGradientMode.ForwardDiagonal)) {
Graphics.FillEllipse(brush, ClientRectangle);
var originalSmoothingMode = Graphics.SmoothingMode;
try {
Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
Graphics.DrawEllipse(pen, ClientRectangle);
} finally {
Graphics.SmoothingMode = originalSmoothingMode;
}
}
Graphics.RenderCircle(ClientRectangle, BackGroundColor.MakeShaded(15), Depth);
}
示例2: RenderRaisedDisk
public static void RenderRaisedDisk(this Graphics Graphics, Rectangle ClientRectangle, Color BackGroundColor, Single Depth = 1)
{
using (var darkPen = new Pen(BackGroundColor.MakeShaded(50), Depth))
using (var lightPen = new Pen(BackGroundColor.MakeHilighted(50), Depth)) {
Graphics.DrawArc(darkPen, ClientRectangle, -45, 180);
Graphics.DrawArc(lightPen, ClientRectangle, 135, 180);
}
}
示例3: RenderNonFocusedRadialBezel
public static Rectangle RenderNonFocusedRadialBezel(this Graphics Graphics, Rectangle ClientRectangle, Color BackGroundColor)
{
using (var pen = new Pen(BackGroundColor.MakeShaded(40), 1)) {
pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Solid;
pen.DashCap = System.Drawing.Drawing2D.DashCap.Round;
Graphics.DrawEllipse(pen, ClientRectangle);
var reducedRectangle = new Rectangle(ClientRectangle.X, ClientRectangle.Y, ClientRectangle.Width, ClientRectangle.Height);
reducedRectangle.Inflate(-1, -1);
return reducedRectangle;
}
}