**
C#调用PhotoShop打开指定路径图片
**
C#调用PhotoShop打开指定路径图片
传入照片路径,检测计算机中的PhotoShop,并打开指定图片
private void GetSoftWarePath(string imgpath)
{
int i = 0;
//找到所有安装程序
using (RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\App Paths", false))
{
if (key != null)//判断对象存在
{
foreach (string keyName in key
发布者:admin,转转请注明出处:http://www.yc00.com/web/1755037016a5230529.html
评论列表(0条)