彩票走势图

TX Text Control系列教程:如何插入形状和图形组?

翻译|使用教程|编辑:况鱼杰|2020-08-20 10:08:47.633|阅读 292 次

概述:TX Text Control提供了非常强大的图形功能,可以将许多不同类型的形状插入文档中。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

Text Control GmbH公司的文档处理控件功能强大,能帮助您轻松创建能与Microsoft Word功能媲美的应用程序。


TX Text Control提供了非常强大的图形功能,可以将许多不同类型的形状插入文档中。 功能区的“插入”选项卡提供了开箱即用的UI,可将形状添加到文档中:

添加单一形状

为了以编程方式插入这些形状,需要执行几个步骤:

// create a drawing control that contains the shape(s)
TXTextControl.Drawing.TXDrawingControl drawing =
    new TXTextControl.Drawing.TXDrawingControl(3000, 3000);

// create a new donut shape
TXTextControl.Drawing.Shape shape =
    new TXTextControl.Drawing.Shape(TXTextControl.Drawing.ShapeType.Donut);

// set the color and border width
shape.ShapeFill.Color = Color.Red;
shape.ShapeOutline.Color = Color.Yellow;
shape.ShapeOutline.Width = 200;

// add the shape to the drawing control
drawing.Shapes.Add(
    shape, 
    TXTextControl.Drawing.ShapeCollection.AddStyle.Fill);

// create a new drawing frame object from the created drawing control
TXTextControl.DataVisualization.DrawingFrame frame = 
    new TXTextControl.DataVisualization.DrawingFrame(drawing);

// add the frame to the document
textControl1.Drawings.Add(frame, -1);

上面的代码在当前输入位置插入一个形状。 如果希望用户将创建的形状“绘制”到文档上,则可以使用DrawingCollection.Add方法的以下实现:
textControl1.Drawings.Add(frame, TXTextControl.FrameInsertionMode.DisplaceText);

添加容器组框架

 以下代码显示了如何在组框架中插入更多形状。 如果容器组框架被移动,则所有包含的形状将一起移动:

	// create a drawing control that contains the shape(s)
TXTextControl.Drawing.TXDrawingControl drawingGroup =
    new TXTextControl.Drawing.TXDrawingControl(3000, 3000);

// create a new donut shape
TXTextControl.Drawing.Shape donut =
    new TXTextControl.Drawing.Shape(TXTextControl.Drawing.ShapeType.Donut) {
        Location = new Point(100, 100),
        Size = new Size(500,500)
    };

TXTextControl.Drawing.Shape diamond =
    new TXTextControl.Drawing.Shape(TXTextControl.Drawing.ShapeType.Diamond);

// add the shape to the drawing control
drawingGroup.Shapes.Add(donut);
drawingGroup.Shapes.Add(diamond);

// create a new drawing frame object from the created drawing control
TXTextControl.DataVisualization.DrawingFrame frame = 
    new TXTextControl.DataVisualization.DrawingFrame(drawingGroup);

// add the frame to the document
textControl1.Drawings.Add(
    frame, 
    textControl1.InputPosition.Location, 
    TXTextControl.FrameInsertionMode.DisplaceText);
以下屏幕截图显示了已激活的组容器框架,其中插入了2个形状:

向容器添加其他形状

如果激活了容器框架(虚线边框),则可以添加其他形状。 以下代码将新形状插入到已激活的容器框架中:

	// create a new donut shape
TXTextControl.Drawing.Shape shape =
    new TXTextControl.Drawing.Shape(TXTextControl.Drawing.ShapeType.Donut);

// set the color and border width
shape.ShapeFill.Color = Color.Red;
shape.ShapeOutline.Color = Color.Yellow;
shape.ShapeOutline.Width = 200;

if (textControl1.Drawings.GetActivatedItem() != null)
{
    // add the shape to the drawing control
    ((TXDrawingControl)textControl1.Drawings.GetActivatedItem().Drawing).Shapes.Add(shape);
}
如果希望用户将其他形状绘制到容器中,则必须在Shapes.Add方法中使用MouseCreation成员。
((TXDrawingControl)textControl1.Drawings.GetActivatedItem().Drawing).Shapes.Add(
  shape,
  ShapeCollection.AddStyle.MouseCreation);


文章推荐:

TX Text Control系列教程— ASP.NET :创建文字处理器和模板设计器


如果您对Text Control感兴趣,可以咨询购买正版授权软件。

关注慧聚IT微信公众号 ☟☟☟,了解产品的最新动态及最新资讯。

1561953111.jpg



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
相关产品
TX Text Control .NET for WPF

TX Text Control .NET for WPF 分标准,专业,及企业三个版本,是一套专业的文字处理控件。

TX Text Control ActiveX

TX Text Control ActiveX是一个强大的文字处理组件,为开发者提供一个广泛的文字处理功能。它提供了全面的文本格式,邮件合并功能和文字处理关键性功能,如表格支持,图片,页眉和页脚、页面部分等。

TX Text Control .NET for Windows Forms

TX Text Control .NET for Windows Forms 是一套功能丰富的文字处理控件。

TX Text Control .NET Server for ASP.NET

一个将文档处理集成到 Web 应用程序中的文档管理控件。

TX Text Control ActiveX Server

TX Text Control ActiveX Server是一个完全可编程的,用于ASP.NET服务器环境与 Microsoft Internet Explorer的文字处理引擎。

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP