예제 #1
0
파일: Program.cs 프로젝트: sheetd/Hello3DX
 static void Main()
 {
     if (!CATMain.engageActiveCatiaSession())
     {
         return;
     }
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new InitForm());
 }
예제 #2
0
파일: InitForm.cs 프로젝트: sheetd/Hello3DX
 public InitForm()
 {
     InitializeComponent();
     this.cm = new CATMain();
     this.cp = new CATPart();
 }