mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
18 lines
468 B
C#
18 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using CPF.Controls;
|
|
using CPF.Shapes;
|
|
|
|
namespace ConsoleApp1
|
|
{
|
|
public class Template : CPF.Controls.Control
|
|
{
|
|
protected override void InitializeComponent()
|
|
{
|
|
Children.Add(new TextBlock { Text = "测试" });
|
|
Children.Add(new Line { StartPoint = new CPF.Drawing.Point(), EndPoint = new CPF.Drawing.Point(20,20), StrokeFill="#f00" });
|
|
}
|
|
}
|
|
}
|