コード例 #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);
        }