WPF应用程序没有输出到控制台?

时间:2008-10-02 02:12:04

标签: c# .net wpf console

我在一个非常简单的WPF测试应用程序中使用Console.WriteLine(),但是当我从命令行执行应用程序时,我看到没有任何内容写入控制台。有谁知道这里会发生什么?

我可以通过在VS 2008中创建WPF应用程序来重现它,并简单地将Console.WriteLine(“text”)添加到执行的任何位置。有什么想法吗?

现在我需要的只是Console.WriteLine()这么简单。我意识到我可以使用log4net或其他日志记录解决方案,但我真的不需要这个应用程序的那么多功能。

编辑:我应该记得Console.WriteLine()适用于控制台应用程序。哦,好吧,没有愚蠢的问题,对吗? :-) 我现在只使用System.Diagnostics.Trace.WriteLine()和DebugView。

10 个答案:

答案 0 :(得分:115)

右键单击项目,“属性”,“应用程序”选项卡,将“输出类型”更改为“控制台应用程序”,然后它还将具有控制台。

答案 1 :(得分:104)

您可以使用

Trace.WriteLine("text");

这将输出到Visual Studio中的“输出”窗口(调试时)。

确保包含诊断程序集:

using System.Diagnostics;

答案 2 :(得分:90)

在实际调用任何Console.Write方法之前,您必须手动创建一个控制台窗口。这将使控制台在不更改项目类型的情况下正常工作(WPF应用程序无法正常工作)。

这是一个完整的源代码示例,介绍ConsoleManager类的外观,以及如何使用它来启用/禁用控制台,而与项目类型无关。

使用以下课程,您只需在调用ConsoleManager.Show()之前在某处写Console.Write ...

[SuppressUnmanagedCodeSecurity]
public static class ConsoleManager
{
    private const string Kernel32_DllName = "kernel32.dll";

    [DllImport(Kernel32_DllName)]
    private static extern bool AllocConsole();

    [DllImport(Kernel32_DllName)]
    private static extern bool FreeConsole();

    [DllImport(Kernel32_DllName)]
    private static extern IntPtr GetConsoleWindow();

    [DllImport(Kernel32_DllName)]
    private static extern int GetConsoleOutputCP();

    public static bool HasConsole
    {
        get { return GetConsoleWindow() != IntPtr.Zero; }
    }

    /// <summary>
    /// Creates a new console instance if the process is not attached to a console already.
    /// </summary>
    public static void Show()
    {
        //#if DEBUG
        if (!HasConsole)
        {
            AllocConsole();
            InvalidateOutAndError();
        }
        //#endif
    }

    /// <summary>
    /// If the process has a console attached to it, it will be detached and no longer visible. Writing to the System.Console is still possible, but no output will be shown.
    /// </summary>
    public static void Hide()
    {
        //#if DEBUG
        if (HasConsole)
        {
            SetOutAndErrorNull();
            FreeConsole();
        }
        //#endif
    }

    public static void Toggle()
    {
        if (HasConsole)
        {
            Hide();
        }
        else
        {
            Show();
        }
    }

    static void InvalidateOutAndError()
    {
        Type type = typeof(System.Console);

        System.Reflection.FieldInfo _out = type.GetField("_out",
            System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);

        System.Reflection.FieldInfo _error = type.GetField("_error",
            System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);

        System.Reflection.MethodInfo _InitializeStdOutError = type.GetMethod("InitializeStdOutError",
            System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);

        Debug.Assert(_out != null);
        Debug.Assert(_error != null);

        Debug.Assert(_InitializeStdOutError != null);

        _out.SetValue(null, null);
        _error.SetValue(null, null);

        _InitializeStdOutError.Invoke(null, new object[] { true });
    }

    static void SetOutAndErrorNull()
    {
        Console.SetOut(TextWriter.Null);
        Console.SetError(TextWriter.Null);
    }
} 

答案 3 :(得分:10)

虽然John Leidegren不断打击这个想法,但Brian是正确的。我刚刚在Visual Studio中使用它。

要清楚,WPF应用程序默认情况下不会创建控制台窗口。

您必须创建WPF应用程序,然后将OutputType更改为“控制台应用程序”。当您运行项目时,您将看到一个控制台窗口,其前面有WPF窗口。

它看起来不太漂亮,但我发现它很有用,因为我希望我的应用程序从命令行运行,其中包含反馈,然后对于某些命令选项,我将显示WPF窗口。

答案 4 :(得分:8)

可以使用command line redirection来查看用于控制台的输出。

例如:

C:\src\bin\Debug\Example.exe > output.txt

会将所有内容写入output.txt文件。

答案 5 :(得分:7)

旧帖子,但我遇到了这个,所以如果你想在Visual Studio中的WPF项目中输出一些东西,那么现代的方法是:

包括这个:

using System.Diagnostics;

然后:

Debug.WriteLine("something");

答案 6 :(得分:3)

我使用Console.WriteLine()在输出窗口中使用...

答案 7 :(得分:1)

我已经创建了一个解决方案,混合了varius post的信息。

它是一种表单,其中包含一个标签和一个文本框。控制台输出将重定向到文本框。

也有一个称为ConsoleView的类,它实现三个public方法:Show(),Close()和Release()。最后一个是请假打开控制台并激活“关闭”按钮以查看结果。

这些表单称为FrmConsole。这是XAML和c#代码。

使用非常简单:

ConsoleView.Show("Title of the Console");

用于打开控制台。使用:

System.Console.WriteLine("The debug message");

用于将文本输出到控制台。

使用:

ConsoleView.Close();

用于关闭控制台。

ConsoleView.Release();

离开控制台并启用“关闭”按钮

XAML

<Window x:Class="CustomControls.FrmConsole"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:CustomControls"
    mc:Ignorable="d"
    Height="500" Width="600" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Topmost="True" Icon="Images/icoConsole.png">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="40"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="40"/>
    </Grid.RowDefinitions>
    <Label Grid.Row="0" Name="lblTitulo" HorizontalAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" VerticalContentAlignment="Center" FontFamily="Arial" FontSize="14" FontWeight="Bold" Content="Titulo"/>
    <Grid Grid.Row="1">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="10"/>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="10"/>
        </Grid.ColumnDefinitions>
        <TextBox Grid.Column="1" Name="txtInner" FontFamily="Arial" FontSize="10" ScrollViewer.CanContentScroll="True" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Visible" TextWrapping="Wrap"/>
    </Grid>
    <Button Name="btnCerrar" Grid.Row="2" Content="Cerrar" Width="100" Height="30" HorizontalAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" VerticalContentAlignment="Center"/>
</Grid>

窗口代码:

partial class FrmConsole : Window
{
    private class ControlWriter : TextWriter
    {
        private TextBox textbox;
        public ControlWriter(TextBox textbox)
        {
            this.textbox = textbox;
        }

        public override void WriteLine(char value)
        {
            textbox.Dispatcher.Invoke(new Action(() =>
            {
                textbox.AppendText(value.ToString());
                textbox.AppendText(Environment.NewLine);
                textbox.ScrollToEnd();
            }));
        }

        public override void WriteLine(string value)
        {
            textbox.Dispatcher.Invoke(new Action(() =>
            {
                textbox.AppendText(value);
                textbox.AppendText(Environment.NewLine);
                textbox.ScrollToEnd();
            }));
        }

        public override void Write(char value)
        {
            textbox.Dispatcher.Invoke(new Action(() =>
            {
                textbox.AppendText(value.ToString());
                textbox.ScrollToEnd();
            }));
        }

        public override void Write(string value)
        {
            textbox.Dispatcher.Invoke(new Action(() =>
            {
                textbox.AppendText(value);
                textbox.ScrollToEnd();
            }));
        }

        public override Encoding Encoding
        {
            get { return Encoding.UTF8; }

        }
    }

    //DEFINICIONES DE LA CLASE
    #region DEFINICIONES DE LA CLASE

    #endregion


    //CONSTRUCTORES DE LA CLASE
    #region CONSTRUCTORES DE LA CLASE

    public FrmConsole(string titulo)
    {
        InitializeComponent();
        lblTitulo.Content = titulo;
        Clear();
        btnCerrar.Click += new RoutedEventHandler(BtnCerrar_Click);
        Console.SetOut(new ControlWriter(txtInner));
        DesactivarCerrar();
    }

    #endregion


    //PROPIEDADES
    #region PROPIEDADES

    #endregion


    //DELEGADOS
    #region DELEGADOS

    private void BtnCerrar_Click(object sender, RoutedEventArgs e)
    {
        Close();
    }

    #endregion


    //METODOS Y FUNCIONES
    #region METODOS Y FUNCIONES

    public void ActivarCerrar()
    {
        btnCerrar.IsEnabled = true;
    }

    public void Clear()
    {
        txtInner.Clear();
    }

    public void DesactivarCerrar()
    {
        btnCerrar.IsEnabled = false;
    }

    #endregion  
}

ConsoleView类的代码

static public class ConsoleView
{
    //DEFINICIONES DE LA CLASE
    #region DEFINICIONES DE LA CLASE
    static FrmConsole console;
    static Thread StatusThread;
    static bool isActive = false;
    #endregion

    //CONSTRUCTORES DE LA CLASE
    #region CONSTRUCTORES DE LA CLASE

    #endregion

    //PROPIEDADES
    #region PROPIEDADES

    #endregion

    //DELEGADOS
    #region DELEGADOS

    #endregion

    //METODOS Y FUNCIONES
    #region METODOS Y FUNCIONES

    public static void Show(string label)
    {
        if (isActive)
        {
            return;
        }

        isActive = true;
        //create the thread with its ThreadStart method
        StatusThread = new Thread(() =>
        {
            try
            {
                console = new FrmConsole(label);
                console.ShowDialog();
                //this call is needed so the thread remains open until the dispatcher is closed
                Dispatcher.Run();
            }
            catch (Exception)
            {
            }
        });

        //run the thread in STA mode to make it work correctly
        StatusThread.SetApartmentState(ApartmentState.STA);
        StatusThread.Priority = ThreadPriority.Normal;
        StatusThread.Start();

    }

    public static void Close()
    {
        isActive = false;
        if (console != null)
        {
            //need to use the dispatcher to call the Close method, because the window is created in another thread, and this method is called by the main thread
            console.Dispatcher.InvokeShutdown();
            console = null;
            StatusThread = null;
        }

        console = null;
    }

    public static void Release()
    {
        isActive = false;
        if (console != null)
        {
            console.Dispatcher.Invoke(console.ActivarCerrar);
        }

    }
    #endregion
}

我希望这个结果有用。

答案 8 :(得分:0)

查看这篇文章,对我自己非常有帮助。下载代码示例:

http://www.codeproject.com/Articles/335909/Embedding-a-Console-in-a-C-Application

答案 9 :(得分:-15)

据我所知,Console.WriteLine()仅适用于控制台应用程序。我想这是你的问题。