本文整理匯總了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;
}
}