public AddinModule()
        {
            InitializeComponent();
            configXML = new ConfigXML();
            openkmAddin = new OpenKMAddIn();

            // Internacionalitzation
            this.import.Caption = resources.GetString("import");
            this.configure.Caption = resources.GetString("configure");

            // Please add any initialization code to the AddinInitialize event handler
            this.import.Click += new AddinExpress.MSO.ADXClick_EventHandler(import_Click);
            this.configure.Click += new AddinExpress.MSO.ADXClick_EventHandler(configure_Click);
        }
示例#2
0
        public AddinModule()
        {
            InitializeComponent();
            configXML   = new ConfigXML();
            openkmAddin = new OpenKMAddIn();

            // Internacionalitzation
            this.import.Caption    = resources.GetString("import");
            this.configure.Caption = resources.GetString("configure");

            // Please add any initialization code to the AddinInitialize event handler
            this.import.Click    += new AddinExpress.MSO.ADXClick_EventHandler(import_Click);
            this.configure.Click += new AddinExpress.MSO.ADXClick_EventHandler(configure_Click);
        }