本文整理匯總了C#中System.Buffer.MoveCursorUp方法的典型用法代碼示例。如果您正苦於以下問題:C# Buffer.MoveCursorUp方法的具體用法?C# Buffer.MoveCursorUp怎麽用?C# Buffer.MoveCursorUp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Buffer
的用法示例。
在下文中一共展示了Buffer.MoveCursorUp方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
static void Main(string[] args)
{
try
{
Terminal.SetRaw();
int terminalWidth;
int terminalHeight;
Terminal.GetDimensions(out terminalWidth, out terminalHeight);
FrameManager frameManager =
new FrameManager(terminalWidth, terminalHeight);
Buffer b = new Buffer();
for (int y = 0; y < 100000; ++y) {
b.AppendLine($"line {y} asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf");
}
Terminal.Clear();
Terminal.SetCursorPosition(b.Cursor.X, b.Cursor.Y);
frameManager.CurrentFrame?.AddBuffer(b);
frameManager.Draw();
while (true)
{
int key = Console.Read();
if ('q' == key) {
break;
}
else if ('d' == key) {
b.DeleteCurrentLine();
}
else if ('j' == key) {
b.MoveCursorDown(1);
}
else if ('k' == key) {
b.MoveCursorUp(1);
}
else if ('h' == key) {
b.MoveCursorLeft(1);
}
else if ('l' == key) {
b.MoveCursorRight(1);
}
else if ('g' == key) {
b.ScrollUp(1);
}
else if ('t' == key) {
b.ScrollDown(1);
}
frameManager.Draw();
}
}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
}
finally
{
Terminal.Clear();
Terminal.SetCursorPosition(0, 0);
Terminal.SetCooked();
}
}