我正在为我们的制造部门开发 C# VSTA 宏。我SldWorks.GetPreviewBitMapFile
用来保存所选模型的位图预览并将其显示在图片框中,如下所示:
除了奇怪的颜色外,代码看起来很好,执行也很好:
bool status = swApp.GetPreviewBitmapFile(filepath, configuration, "D:\\preview.bmp");
pictureBox1.ImageLocation = "D:\\Preview.bmp";
pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox1.Refresh();
有没有人遇到过类似的问题,有什么补救措施?