本文整理汇总了C#中Cairo.Context.SetFill方法的典型用法代码示例。如果您正苦于以下问题:C# Context.SetFill方法的具体用法?C# Context.SetFill怎么用?C# Context.SetFill使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cairo.Context
的用法示例。
在下文中一共展示了Context.SetFill方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PaintWidget
protected override void PaintWidget(Context ctx, int w, int h)
{
ctx.Rectangle (0.0d, 0.0d, w, h);
ctx.SetFill (BlueprintStyle.BluePrint);
double wb = w - Offset - xb - 4.0d;
double xbt = wb * (current - min) / (max - min) - 4.0d;
ctx.Fill ();
switch (this.mode) {
case MediaMode.Play:
ctx.Rectangle (Offset + 2, 1.0d, 8.0d, 32.0d);
ctx.Rectangle (Offset + 18, 1.0d, 8.0d, 32.0d);
ctx.ClosePath ();
break;
default:
ctx.MoveTo (Offset, 1.0d);
ctx.RelLineTo (32.0d, 16.0d);
ctx.RelLineTo (-32.0d, 16.0d);
ctx.ClosePath ();
break;
}
double xf = xb + xbt;
double xt = xf + 8.0d;
ctx.Rectangle (xf, 1.0d, 8.0d, 32.0d);
this.xtickS = xf;
this.xtickE = xt;
ctx.SetFill (BlueprintStyle.FillPattern);
ctx.FillPreserve ();
ctx.SetFill (BlueprintStyle.HardWhite);
if (xbt > 0.0d) {
ctx.MoveTo (xb, 16.0d);
ctx.LineTo (xf, 16.0d);
}
if (xf < w - Offset - 4.0d) {
ctx.MoveTo (xt, 16.0d);
ctx.LineTo (w - Offset - 4.0d, 16.0d);
}
foreach (double t in this.Chapters) {
double x = this.TtoX (t);
if (x < xf || x >= xt) {
ctx.MoveTo (x, 0.0d);
ctx.LineTo (x, 33.0d);
}
}
ctx.Stroke ();
}