1
0
mirror of https://gitee.com/csharpui/CPF.git synced 2025-04-05 17:37:51 +08:00
CPF/ConsoleApp1/Template.cs
2023-11-21 23:05:03 +08:00

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" });
}
}
}