28 lines
650 B
C#
28 lines
650 B
C#
//*********************************************************************
|
|
//xCAD
|
|
//Copyright(C) 2020 Xarial Pty Limited
|
|
//Product URL: https://www.xcad.net
|
|
//License: https://xcad.xarial.com/license/
|
|
//*********************************************************************
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SwAddInExample
|
|
{
|
|
public partial class WinForm : Form
|
|
{
|
|
public WinForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|