예제 #1
0
        //────────────────────────────────────────
        #endregion



        #region イベントハンドラー
        //────────────────────────────────────────

        private void UsercontrolArea_SizeChanged(object sender, EventArgs e)
        {
            UsercontrolArea ucArea = (UsercontrolArea)sender;

            this.customcontrolPanel1.Width  = ucArea.Width;
            this.customcontrolPanel1.Height = ucArea.Height;
            //.WriteLine(this.GetType().NFcName + "#UcTabPage_SizeChanged: UcAreaの横縦幅(" + this.ccPanel.Width + "," + this.ccPanel.Height + ")");
        }
예제 #2
0
        //────────────────────────────────────────
        public Usercontrol Perform(
            Expression_Node_StringImpl ec_FcName,
            MemoryApplication owner_MemoryApplication
            )
        {
            UsercontrolArea uctAra = new UsercontrolArea();

            // 名前だけ初期設定
            uctAra.Expression_Name_Control = ec_FcName;
            uctAra.ControlCommon.Owner_MemoryApplication = owner_MemoryApplication;

            return uctAra;
        }