在调试和发布模式下从 WPF 应用程序启动控制台应用程序
Launch console application from WPF application in debug and release modes
使用 WPF 应用程序,所有控制台输出都转到 Visual Studio 输出 window 如果您使用调试模式或发布模式,则不会出现任何控制台。这是异常吗?如果您知道解决方法?我希望我的控制台以两种模式出现。提前谢谢你。
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Program.Main();
}
}
只需将项目 "Output type" 更改为 "Console Application",您将同时看到:应用程序 window 和控制台。
使用 WPF 应用程序,所有控制台输出都转到 Visual Studio 输出 window 如果您使用调试模式或发布模式,则不会出现任何控制台。这是异常吗?如果您知道解决方法?我希望我的控制台以两种模式出现。提前谢谢你。
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Program.Main();
}
}
只需将项目 "Output type" 更改为 "Console Application",您将同时看到:应用程序 window 和控制台。