本文整理汇总了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();
}
}