问题描述
我必须在photoshop,lightroom中打开图像和catlog。请帮助我。
提前致谢
我尝试过:
使用System.Windows.Forms;
使用System.Diagnostics
public partial class Form1:Form
{
public Form1()
{
InitializeComponent();
} $ / $
private void button1_Click(object sender,EventArgs e)
{
Process.Start(mspaint ,@C:\Desert.jpg);
}
}
I have to open images and catlog in photoshop ,lightroom resp. Kindly help me.
Thanks in advance
What I have tried:
using System.Windows.Forms;
using System.Diagnostics
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process.Start("mspaint", @"""C:\Desert.jpg""");
}
}
推荐答案
Process.Start(@"C:\Desert.jpg");
Will执行此操作。
Will do it.
这篇关于如何在ASP窗口应用程序中打开phtooshop和lightroom中的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!