using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.AutoCAD.DatabaseServices;
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Runtime;
using Autodesk.AutoCAD.Geometry;
using Autodesk.AutoCAD.ApplicationServices;
using System.Windows.Forms;

namespace Cylinder
{
    public class Shell
    {
        Cylinder SS = new Cylinder();
        [CommandMethod("Shell")]
        public void LoadShell()
        {
            Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(SS);
        }
    }
}

相关文章:

  • 2021-05-28
  • 2021-07-08
  • 2021-12-28
  • 2021-04-20
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-27
  • 2021-10-14
  • 2021-07-09
  • 2021-07-23
  • 2021-12-24
  • 2021-07-07
相关资源
相似解决方案