silverlight调用exe程序

silverlight调用exe程序,第1张

概述  一定要在项目中添加引用Microsoft.CSharp   这里是打开写字板程序 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Runtime.InteropServices.Automation; using System.Windows; u

  一定要在项目中添加引用Microsoft.CSharp

  这里是打开写字板程序

using System;
using System.Collections.Generic;
using System.linq;
using System.Net;
using System.Runtime.InteropServices.automation;
using System.windows;
using System.windows.Controls;
using System.windows.documents;
using System.windows.input;
using System.windows.Media;
using System.windows.Media.Animation;
using System.windows.Shapes;
namespace InvokeNotepad
{
     public partial  class MainPage : UserControl
    {
         public MainPage()
        {
            InitializeComponent();
        }
         private  voID button1_Click( object sender, RoutedEventArgs e)
        {
             if (App.Current.HasElevatedPermissions)
            {
                 using (dynamic cmd = automationFactory.CreateObject( "WScript.Shell"))
                {
                    cmd.Run(@ "C:\windows\NOTEPAD.EXE", 1,  true);                 }             }          }     } } 总结

以上是内存溢出为你收集整理的silverlight调用exe程序全部内容,希望文章能够帮你解决silverlight调用exe程序所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1063502.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存