当前位置: 首页>>代码示例>>C#>>正文


C# DrawingContext.DrawText方法代码示例

本文整理汇总了C#中DrawingContext.DrawText方法的典型用法代码示例。如果您正苦于以下问题:C# DrawingContext.DrawText方法的具体用法?C# DrawingContext.DrawText怎么用?C# DrawingContext.DrawText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DrawingContext的用法示例。


在下文中一共展示了DrawingContext.DrawText方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OnRender

            protected override void OnRender(DrawingContext dc)
            {
                string testString = "Formatted MML Document is displayed here!\nPlease implement the user oriented layout logic.";

                FormattedText formattedText = new FormattedText(testString, CultureInfo.CurrentCulture, FlowDirection.LeftToRight, new Typeface("Verdana"), 30, Brushes.Black);

                formattedText.MaxTextWidth = 280;
                formattedText.MaxTextHeight = 280;

                formattedText.SetForegroundBrush(new LinearGradientBrush(Colors.Blue, Colors.Teal, 90.0), 10, 12);

                formattedText.SetFontStyle(FontStyles.Italic, 36, 5);
                formattedText.SetForegroundBrush(new LinearGradientBrush(Colors.Pink, Colors.Crimson, 90.0), 36, 5);
                formattedText.SetFontSize(36, 36, 5);

                formattedText.SetFontWeight(FontWeights.Bold, 42, 48);

                dc.DrawRectangle(Brushes.White, null, new Rect(0, 0, 300, 300));

                dc.DrawText(formattedText, new Point(10, 10));
            }
开发者ID:anhlai,项目名称:EMR-MML,代码行数:21,代码来源:SampleMmlLayout.cs

示例2: 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);
            }
        }
开发者ID:samuto,项目名称:designscript,代码行数:33,代码来源:CurvyTabControl.cs

示例3: OnRender

 /// <summary>
 /// When overriden in a class, this method allows the execution of code whenever the element has been rendered
 /// </summary>
 ///<param name="drawingContext">The <see cref="DrawingContext"/> in which the element has been rendered</param>
 protected override void OnRender(DrawingContext drawingContext)
 {
     Media.Size textSize;
     Media.Rectangle layoutSlot;
     if (!string.IsNullOrWhiteSpace(this.Text)
         && this.Foreground != null)
     {
         textSize = DrawingContext.MeasureText(this.Text, this.Font);
         layoutSlot = LayoutInformation.GetLayoutSlot(this);
         layoutSlot = new Media.Rectangle(new Media.Point(layoutSlot.Position.X - textSize.Width / 2, layoutSlot.Position.Y - textSize.Height / 2), layoutSlot.Size);
         drawingContext.DrawText(this.Text, layoutSlot.Position, this.Font, this.Foreground);
     }
 }
开发者ID:yonglehou,项目名称:Photon,代码行数:17,代码来源:Label.cs

示例4: OnRender

 protected override void OnRender(DrawingContext drawingContext)
 {
     drawingContext.DrawText(this.Text, this.Position);
 }
开发者ID:modulexcite,项目名称:Avalonia,代码行数:4,代码来源:DrawingContextTests.cs


注:本文中的DrawingContext.DrawText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。