H4CK3R-01
79d2aef017
- Open AutomationML files - Save AutomationML files - Create new AutomationML document - Show RoleClassLibrarys and InterfaceClassLibrarys of document -Show Attributes of different Librarys - Basic filter for attributes - Switch between expert and easy mode - Added Link to wiki
35 lines
954 B
C#
35 lines
954 B
C#
using Aml.Engine.CAEX;
|
|
using Aml.Engine.CAEX.Extensions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace WinFormsApp1
|
|
{
|
|
static class Program
|
|
{
|
|
public static Boolean expertMode = true;
|
|
public static CAEXDocument caexDocument;
|
|
public static String filepath = string.Empty;
|
|
public static String filetype = null;
|
|
public static Boolean unsavedChanges = false;
|
|
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
Form1 form = new Form1();
|
|
form.switchMode(false);
|
|
Application.Run(form);
|
|
}
|
|
}
|
|
}
|