|
|
@ -34,13 +34,35 @@ namespace ConsoleApp.Menu
|
|
|
|
|
|
|
|
|
|
|
|
public bool WriteMode { get; set; }
|
|
|
|
public bool WriteMode { get; set; }
|
|
|
|
public StringBuilder InputStr { get; set; }
|
|
|
|
public StringBuilder InputStr { get; set; }
|
|
|
|
public void DisableWriteMode() { }
|
|
|
|
|
|
|
|
public void EnableWriteMode() { }
|
|
|
|
public void DisableWriteMode()
|
|
|
|
public void SelectNext() { }
|
|
|
|
{
|
|
|
|
public void SelectPrevious() { }
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
public void ToggleWriteMode() { }
|
|
|
|
}
|
|
|
|
public void Update() { }
|
|
|
|
public void EnableWriteMode()
|
|
|
|
public void WriteMenuMode(ConsoleKeyInfo cki) { }
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SelectNext()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SelectPrevious()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ToggleWriteMode()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Update()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void WriteMenuMode(ConsoleKeyInfo cki)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// Plain text does not need to do anything for this.
|
|
|
|
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|