Beispiel #1
0
        public PythonScript window(int height, int width)
        {
            PythonScript win = new PythonScript();

            win.Height = height;
            win.Width  = width;
            return(win);
        }
Beispiel #2
0
 public void AddToDisplay(PythonScript win, int x, int y)
 {
     win.Add(k, x, y);
 }