static public void Execute(PrintModel pm)
        {
            ObjectInformation info = new ObjectInformation();

            info.Analyse(pm);
            info.Show(Main.main);
        }
Beispiel #2
0
        private void toolStripInfo_Click(object sender, EventArgs e)
        {
            PrintModel act = SingleSelectedModel;

            if (act == null)
            {
                return;
            }
            ObjectInformation.Execute(act);
        }
 static public void Execute(PrintModel pm)
 {
     ObjectInformation info = new ObjectInformation();
     info.Analyse(pm);
     info.Show(Main.main);
 }