BCB Frame 的用法 |
尚未結案
|
blue
中階會員 發表:170 回覆:136 積分:81 註冊:2002-04-15 發送簡訊給我 |
Hi,各位先進大家好:
平時使用Delphi,不得已新專案需使用BCB,以下程式想轉BCB FCommonFrame = class of TFrame; procedure TFormMain.LoadFrameByClassName(AFrameClassName: TGoverFrame); begin if Assigned(FCommonFrame) then if SameText(AFrameClassName.ClassName, FCurrentFrameClass) then exit else begin FGoverFrame.Visible := False; FreeAndNil(FCommonFrame); end; FCommonFrame := AFrameClassName.Create(nil); FCommonFrame.Parent := pnlCommon; FCommonFrame.Visible := True; FCurrentFrameClass := AFrameClassName.ClassName; end; BCB 程式 class TCommonFrame : public TFrame{}; void TFormMain::LoadFrameByClass(TCommonFrame *AFrameClass) { if (FCommonFrame != NULL) { if (//應該是型別問題 exit; } else { FCommonFrame->Visible = False; FreeAndNil(FCommonFrame); }; }; FCommonFrame = new AFrameClass(); FCommonFrame->Parent = pnlCommon; FCommonFrame->Visible = True; FCurrentFrameClass = AFrameClass->ClassName(); } 目前卡在紅字部份,請先進撥冗指導,謝謝! 編輯記錄
taishyang 重新編輯於 2015-04-27 10:23:46, 註解 無‧
|
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |