コード例 #1
0
        //────────────────────────────────────────

        private void UsercontrolTabPage_SizeChanged(object sender, EventArgs e)
        {
            UsercontrolTabPage ucTabPage = (UsercontrolTabPage)sender;

            this.customcontrolTabPage1.Width  = ucTabPage.Width;
            this.customcontrolTabPage1.Height = ucTabPage.Height;
            //.WriteLine(this.GetType().NFcName + "#UcTabPage_SizeChanged: Ccタブページの横縦幅(" + this.ccTabPage.Width + "," + this.ccTabPage.Height + ")");
        }
コード例 #2
0
        //────────────────────────────────────────
        public Usercontrol Perform(
            Expression_Node_StringImpl ec_FcName,
            MemoryApplication owner_MemoryApplication
            )
        {
            UsercontrolTabPage uctTpg = new UsercontrolTabPage();

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

            return uctTpg;
        }