本文整理汇总了C#中DrawingContext.DrawGeometry方法的典型用法代码示例。如果您正苦于以下问题:C# DrawingContext.DrawGeometry方法的具体用法?C# DrawingContext.DrawGeometry怎么用?C# DrawingContext.DrawGeometry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DrawingContext
的用法示例。
在下文中一共展示了DrawingContext.DrawGeometry方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Render
internal void Render(DrawingContext context, GradientBrush tabBackground, double offset)
{
// Do the horizontal offset first.
(tabOuterPath.Transform as TranslateTransform).X = offset;
(tabInnerPath.Transform as TranslateTransform).X = offset;
Brush outerBrush = new SolidColorBrush(UIColors.CurvyTabOuterColor);
context.DrawGeometry(Brushes.White, new Pen(outerBrush, 1), tabOuterPath);
Brush innerBrush = new SolidColorBrush(UIColors.CurvyTabInnerColor);
context.DrawGeometry(tabBackground, new Pen(innerBrush, 1), tabInnerPath);
if (null == formattedText)
RefreshFormattedText();
// Finally, draw the display text on the tab.
context.DrawText(formattedText, new Point(offset + (parentVisual.GapBetweenTabs + 8), 6));
if (false != parentVisual.ShowCloseButton)
{
if (null == tabCloseButton)
{
tabCloseButton = new PathGeometry();
tabCloseButton.Transform = new TranslateTransform(0, 0);
tabCloseButton.Figures = CreateButtonPathFigures();
}
Brush closeBrush = this.OverCloseButton ? Brushes.Black : Brushes.Gray;
double closeOffset = parentVisual.TabWidth + parentVisual.GapBetweenTabs + 2;
(tabCloseButton.Transform as TranslateTransform).X = offset + closeOffset;
context.DrawGeometry(Brushes.Black, new Pen(closeBrush, 2), tabCloseButton);
}
}
示例2: OnRender
protected override void OnRender(DrawingContext drawingContext)
{
drawingContext.DrawGeometry(this.Brush, this.Pen, this.Geometry);
}