本文整理汇总了C#中Dataweb.NShape.Advanced.Template类的典型用法代码示例。如果您正苦于以下问题:C# Template类的具体用法?C# Template怎么用?C# Template使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Template类属于Dataweb.NShape.Advanced命名空间,在下文中一共展示了Template类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TemplatePresenter
/// <summary>
/// Initializes a new instance of <see cref="T:Dataweb.NShape.WinFormsUI.TemplatePresenter" />.
/// </summary>
public TemplatePresenter(Project project, Template template)
: this() {
if (project == null) throw new ArgumentNullException("project");
TemplateController = new TemplateController(project, template);
disposeTemplateEditor = true;
Initialize();
}
示例2: ShapeGroup
/// <override></override>
protected internal ShapeGroup(ShapeType shapeType, Template template)
: base()
{
if (shapeType == null) throw new ArgumentNullException("shapeType");
this.shapeType = shapeType;
this.template = template;
children = new GroupShapeAggregation(this);
}
示例3: TemplateEditorDialog_FormClosed
private void TemplateEditorDialog_FormClosed(object sender, FormClosedEventArgs e)
{
templateController.Clear();
templateController.Project = null;
template = null;
}
示例4: CreateInstance
internal static Label CreateInstance(ShapeType shapeType, Template template)
{
return new Label(shapeType, template);
}
示例5: CustomPicture
protected internal CustomPicture(ShapeType shapeType, Template template, string resourceBasename, Assembly resourceAssembly)
: base(shapeType, template, resourceBasename, resourceAssembly)
{
Construct();
}
示例6: ExtractSymbol
protected internal ExtractSymbol(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例7: DocumentSymbol
/// <override></override>
protected internal DocumentSymbol(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例8: ManualInputSymbol
protected internal ManualInputSymbol(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例9: FlowChartTriangleBase
protected internal FlowChartTriangleBase(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例10: FlowChartSquareBase
protected internal FlowChartSquareBase(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例11: FlowChartDiamondBase
protected internal FlowChartDiamondBase(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例12: CreateInstance
internal static Shape CreateInstance(ShapeType shapeType, Template template)
{
return new IsoscelesTriangle(shapeType, template);
}
示例13: IsoscelesTriangle
protected internal IsoscelesTriangle(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例14: DecisionSymbol
/// <override></override>
protected internal DecisionSymbol(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}
示例15: DisplaySymbol
protected internal DisplaySymbol(ShapeType shapeType, Template template)
: base(shapeType, template)
{
}