Esempio n. 1
0
        public static NoriFrame CreateAndShow(
            Interpreter.Structs.Value crayonObj,
            string title,
            int width,
            int height,
            string uiData,
            int resumeExecId)
        {
            NoriFrame frame = new NoriFrame(title, width, height, uiData);

            frame.CrayonObjectRef = crayonObj;
            frame.ResumeExecId    = resumeExecId;
            frame.Show();
            return(frame);
        }