Exemple #1
0
        private CoWriter(int left, int top, int width, int height)
        {
            Left   = left;
            Top    = top;
            Width  = width;
            Height = height;

            this.line = new LineEditor(this, "coty");
        }
Exemple #2
0
        private static void MainX()
        {
            var le = new LineEditor("foo");

            string s;

            while ((s = le.Edit("shell> ", "")) != null)
            {
                G.C.WriteLine($"----> [{s}]");
            }
        }