• <tfoot id='oePRR'></tfoot>
    <legend id='oePRR'><style id='oePRR'><dir id='oePRR'><q id='oePRR'></q></dir></style></legend>
    • <bdo id='oePRR'></bdo><ul id='oePRR'></ul>

  • <small id='oePRR'></small><noframes id='oePRR'>

    <i id='oePRR'><tr id='oePRR'><dt id='oePRR'><q id='oePRR'><span id='oePRR'><b id='oePRR'><form id='oePRR'><ins id='oePRR'></ins><ul id='oePRR'></ul><sub id='oePRR'></sub></form><legend id='oePRR'></legend><bdo id='oePRR'><pre id='oePRR'><center id='oePRR'></center></pre></bdo></b><th id='oePRR'></th></span></q></dt></tr></i><div id='oePRR'><tfoot id='oePRR'></tfoot><dl id='oePRR'><fieldset id='oePRR'></fieldset></dl></div>

        C# 控制台 - 将光标位置设置为最后一个可见行

        时间:2023-08-27
        <i id='hjqE6'><tr id='hjqE6'><dt id='hjqE6'><q id='hjqE6'><span id='hjqE6'><b id='hjqE6'><form id='hjqE6'><ins id='hjqE6'></ins><ul id='hjqE6'></ul><sub id='hjqE6'></sub></form><legend id='hjqE6'></legend><bdo id='hjqE6'><pre id='hjqE6'><center id='hjqE6'></center></pre></bdo></b><th id='hjqE6'></th></span></q></dt></tr></i><div id='hjqE6'><tfoot id='hjqE6'></tfoot><dl id='hjqE6'><fieldset id='hjqE6'></fieldset></dl></div>

            • <bdo id='hjqE6'></bdo><ul id='hjqE6'></ul>

              • <legend id='hjqE6'><style id='hjqE6'><dir id='hjqE6'><q id='hjqE6'></q></dir></style></legend>
                <tfoot id='hjqE6'></tfoot>
                  <tbody id='hjqE6'></tbody>

                  <small id='hjqE6'></small><noframes id='hjqE6'>

                1. 本文介绍了C# 控制台 - 将光标位置设置为最后一个可见行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想将光标在控制台中的位置设置为最后一个可见行.我该怎么做?

                  I would like to set the position of the cursor in the Console to the last visible line. How can I do this?

                  干杯,

                  皮特

                  推荐答案

                  如果你指的是窗口的最后一行,你可以混合使用 Console.CursorTopConsole.WindowHeightConsole.WindowTop.示例代码:

                  If you mean the last line of the window, you can use a mixture of Console.CursorTop, and Console.WindowHeight and Console.WindowTop. Sample code:

                  using System;
                  
                  class Test
                  {
                      static void Main()
                      {
                          Console.Write("Hello");
                          WriteOnBottomLine("Bottom!");
                          Console.WriteLine(" there");
                      }
                  
                      static void WriteOnBottomLine(string text)
                      {
                          int x = Console.CursorLeft;
                          int y = Console.CursorTop;
                          Console.CursorTop = Console.WindowTop + Console.WindowHeight - 1;
                          Console.Write(text);
                          // Restore previous position
                          Console.SetCursorPosition(x, y);
                      }
                  }
                  

                  请注意,这必须考虑到 Console.WindowTop 以找出您在缓冲区内的位置...

                  Note that this has to take account of Console.WindowTop to find out where you are within the buffer...

                  这篇关于C# 控制台 - 将光标位置设置为最后一个可见行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:可以在 c# .net 中获取/设置控制台字体大小吗? 下一篇:C# 控制台应用程序无效操作异常

                  相关文章

                  最新文章

                2. <legend id='LzvuX'><style id='LzvuX'><dir id='LzvuX'><q id='LzvuX'></q></dir></style></legend>

                  • <bdo id='LzvuX'></bdo><ul id='LzvuX'></ul>

                      <small id='LzvuX'></small><noframes id='LzvuX'>

                    1. <tfoot id='LzvuX'></tfoot>
                    2. <i id='LzvuX'><tr id='LzvuX'><dt id='LzvuX'><q id='LzvuX'><span id='LzvuX'><b id='LzvuX'><form id='LzvuX'><ins id='LzvuX'></ins><ul id='LzvuX'></ul><sub id='LzvuX'></sub></form><legend id='LzvuX'></legend><bdo id='LzvuX'><pre id='LzvuX'><center id='LzvuX'></center></pre></bdo></b><th id='LzvuX'></th></span></q></dt></tr></i><div id='LzvuX'><tfoot id='LzvuX'></tfoot><dl id='LzvuX'><fieldset id='LzvuX'></fieldset></dl></div>