我是C#和UWP的新手,也是Visual Studio的新手,我现在花了数小时在网上搜寻,试图弄清楚如何获得打开命令提示符的按钮。最终目标是使用它来执行我编写的Python代码的单独一部分,但要小心一些。我不追求直接执行Python脚本的原因(我只是假设是可能的)是因为它具有一些输出,我想将其传递回我的UWP。我知道我可能会犯错,但是我不知道我不知道什么,所以我正在尽力而为。
因此,经过数小时的尝试,我开始怀疑是否使用Visual Studio的最新版本(几天前下载的2017)是我的实际问题。我一直在论坛上找到的所有解决方案似乎都没有用,这让我想知道是否有一些名称空间,程序集或库或任何已删除的内容(向您展示了我所知的多少)。我一直看到“ Process.Start ...”,但是即使当我尝试添加各种引用时,Process也不存在,伟大的互联网不断告诉我要创建。那就是我开始怀疑的地方。当我转到参考管理器时,在“程序集”->“扩展名”下,没有告诉我要添加的“系统”。但是同时,我看到Visual Studio已经添加了“使用系统”;到我的代码顶部(标题?请原谅)。
因此,我处于无休止的搜索网络并将BS键入Visual Studio的循环中。请帮我。我要疯了。我将包括我为娱乐而使用的极其有限的代码(它是95%的Visual Studio生成的)。
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
namespace Jarvis_UWP__C_Sharp_
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
private async void Fetch_Click(object sender, RoutedEventArgs e)
{
ContentDialog TestDialog = new ContentDialog
{
Title = "Test",
Content = "Popup",
CloseButtonText = "Ok"
};
await TestDialog.ShowAsync();
Process.Start(....);
}
}
}