コード例 #1
0
        static public void Execute(PrintModel pm)
        {
            ObjectInformation info = new ObjectInformation();

            info.Analyse(pm);
            info.Show(Main.main);
        }
コード例 #2
0
ファイル: STLComposer.cs プロジェクト: tojoshua/Repetier-Host
        private void toolStripInfo_Click(object sender, EventArgs e)
        {
            PrintModel act = SingleSelectedModel;

            if (act == null)
            {
                return;
            }
            ObjectInformation.Execute(act);
        }
コード例 #3
0
 static public void Execute(PrintModel pm)
 {
     ObjectInformation info = new ObjectInformation();
     info.Analyse(pm);
     info.Show(Main.main);
 }