0

我正在使用 Ventana System 为 Vensim 软件提供的示例。该示例是 C# 中的桌面应用程序。我想将此示例应用到 C# 中的 Web 版本。

桌面版

VensimDLLWrapper.vensim_show_sketch(1, 1, 100, (long)pictureBox_Sketch.Handle);

网页版

VensimDLLWrapper.vensim_show_sketch(1, 1, 100, (long)Image1.???);
4

1 回答 1

3

这是我的方法:我在桌面应用程序中创建了一个 PictureBox

        PictureBox pictureBox_Sketch = new PictureBox();
        pictureBox_Sketch.Name = "pictureBox_Sketch";
        pictureBox_Sketch.Size = new System.Drawing.Size(1200, 768);
        pictureBox_Sketch.TabIndex = 19;
        pictureBox_Sketch.TabStop = false;

然后,我将图像放在句柄中。

       VensimDLLWrapper.vensim_show_sketch(1, 1, 100, (long)pictureBox_Sketch.Handle);

然后,我将图像复制到剪贴板:

       VensimDLLWrapper.vensim_tool_command("EXPORT>SK", (long)pictureBox_Sketch.Handle, 0);

最后,我将图像保存在磁盘中(很明显我必须使用 Server.Map 或其他)

   if (PInvoke.OpenClipboard(pictureBox_Sketch.Handle))
        {
            if (PInvoke.IsClipboardFormatAvailable(14))
            {
                IntPtr ptr = PInvoke.GetClipboardData(14);
                if (!ptr.Equals(new IntPtr(0)))
                {
                    Metafile metafile = new Metafile(ptr, true);
                    metafile.Save("C:\\ruta\\Images\\ModelGraph.png", System.Drawing.Imaging.ImageFormat.Png);
                    //HyperLink1.NavigateUrl = "Images\\ModelGraph.png";
                    // Image1.ImageUrl = "Images\\ModelGraph.emf";

                    //Set the Image Property of PictureBox 

                }
            }
            PInvoke.CloseClipboard();
        }
于 2012-11-01T18:20:54.510 回答