示例#1
0
文件: Form1.cs 项目: Engman/fly
        public FlyWind()
        {
            InitializeComponent();

            flyEngine = new FlyWindEdit();

            this.luaEditor = new LuaEdit();
            this.Move += new EventHandler(MoveSubForm);
            this.Resize += new EventHandler(MoveSubForm);
            this.luaEditor.StartPosition = FormStartPosition.Manual;
            this.luaEditor.Left = this.Left + this.Width;
            this.luaEditor.Top = this.Top;
            this.luaEditor.Show(this);
        }
示例#2
0
文件: Form1.cs 项目: dean11/fly
        public FlyWind()
        {
            InitializeComponent();

            flyEngine = new FlyWindEdit();

            this.luaEditor = new LuaEdit();
            this.Move     += new EventHandler(MoveSubForm);
            this.Resize   += new EventHandler(MoveSubForm);
            this.luaEditor.StartPosition = FormStartPosition.Manual;
            this.luaEditor.Left          = this.Left + this.Width;
            this.luaEditor.Top           = this.Top;
            this.luaEditor.Show(this);
        }