C#窗體應用中開啟控制輸出內容

阿拉斯加王發表於2024-09-14

窗體程式中開啟控制檯輸出內容

namespace WinForms中開啟控制檯
{
     
    public partial class Form1 : Form
    {
        /////////////以下控制檯呼叫相關程式碼///////////////////////////
        [System.Runtime.InteropServices.DllImport("kernel32.dll", SetLastError = true)]
        [return: System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.Bool)]
        static extern bool AllocConsole();

        [System.Runtime.InteropServices.DllImport("Kernel32")]
        public static extern void FreeConsole();
        /////////////以上控制檯呼叫相關程式碼///////////////////////////
        int i = 0;
        public Form1()
        {
            InitializeComponent();
        }
        
        private void button1_Click(object sender, EventArgs e)
        {
            i++;
            AllocConsole();   //開啟控制檯
            Console.WriteLine("這是個測試"+i);
            
        }
    }
}

Nlog方式列印日誌

參照 https://www.cnblogs.com/Can-daydayup/p/11182958.html

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <targets>
    <!--此部分中的所有目標將自動非同步-->
    <target name="asyncFile" xsi:type="AsyncWrapper">
      <!--專案日誌儲存檔案路徑說明fileName="${basedir}/儲存目錄,以年月日的格式建立/${shortdate}/${記錄器名稱}-${單級記錄}-${shortdate}.txt"-->
      <target name="log_file" xsi:type="File"
              fileName="${basedir}/ProjectLogs/${shortdate}/${logger}-${level}-${shortdate}.txt"
              layout="${longdate} | ${message} ${onexception:${exception:format=message} ${newline} ${stacktrace} ${newline}"
              archiveFileName="${basedir}/archives/${logger}-${level}-${shortdate}-{#####}.txt"
              archiveAboveSize="102400"
              archiveNumbering="Sequence"
              concurrentWrites="true"
              keepFileOpen="false" />
    </target>
    <!--使用可自定義的著色將日誌訊息寫入控制檯-->
    <target name="colorConsole" xsi:type="ColoredConsole" layout="[${date:format=HH\:mm\:ss}]:${message} ${exception:format=message}" />
  </targets>

  <!--規則配置,final - 最終規則匹配後不處理任何規則-->
  <rules>
    <logger name="Microsoft.*" minlevel="Info" writeTo="" final="true" />
    <logger name="*" minlevel="Info" writeTo="asyncFile" />
    <logger name="*" minlevel="Warn" writeTo="colorConsole" />
  </rules>
</nlog>

配置配置檔案,放在debug目錄下
需列印日誌的地方新增如下程式碼

            //宣告物件
            var logger = NLog.LogManager.GetCurrentClassLogger();
            // 記錄資訊級別訊息
            logger.Info("Greetings from NLog World!"+i);

日誌如下
img

相關文章