Exemplo n.º 1
0
        private Exporter.formulaire.Form1 NewExporterEnOSM()
        {
            Exporter.formulaire.Form1 exporter = new Exporter.formulaire.Form1();

            int    count = 1;
            string text  = "Exporter en OSM";


            exporter.Text = text;
            return(exporter);
        }
Exemplo n.º 2
0
 private void fichierCCToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Exporter.formulaire.Form1 exporter = NewExporterEnOSM();
     Exporter.formulaire.Form1._hostSurfaceManager.AddService(typeof(IToolboxService), Home.m_toolbox.toolbox1);
     Exporter.formulaire.Form1._hostSurfaceManager.AddService(typeof(PropertyGrid), Home.m_propertyWindow.propertyGrid);
     if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
     {
         exporter.MdiParent = this;
         exporter.Show();
     }
     else
     {
         exporter.Show(dockPanel);
     }
 }
Exemplo n.º 3
0
 // EXPORTER
 private Exporter.formulaire.Form1 NewExporterEnOSM(string text)
 {
     Exporter.formulaire.Form1 exporter = new Exporter.formulaire.Form1();
     exporter.Text = text;
     return(exporter);
 }