如何用VS2008加载一个GRD文件的图像
电脑里装了Surfer8,所以在Windows下能直接打开。现在问题是如何在VS2008里加载GRD图像我已经研究出来了,直接调用就行。以下是直接调用的代码。现在正研究s...
电脑里装了Surfer8,所以在Windows下能直接打开。现在问题是如何在VS2008里加载GRD图像
我已经研究出来了,直接调用就行。以下是直接调用的代码。现在正研究surfer的二次开发。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsFormsApplication15
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = @"C:\Documents and Settings\Administrator\桌面\2006_M01_D02_1100(UTC+0800)_L00_SO2_1HR_CONC.GRD";
p.Start();
}
}
} 展开
我已经研究出来了,直接调用就行。以下是直接调用的代码。现在正研究surfer的二次开发。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsFormsApplication15
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process p = new Process();
p.StartInfo.FileName = @"C:\Documents and Settings\Administrator\桌面\2006_M01_D02_1100(UTC+0800)_L00_SO2_1HR_CONC.GRD";
p.Start();
}
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询