Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

   #CustomFrameworkManager <= #AVFRAMEWORKMANAGER.avCustomManagerBaseReference *As #EOM_CustomManager


 次に、以下の背景パネルのスタイルとイメージを変更する 次に、以下の背景パネルのスタイルとイメージを変更する 2 つのイベント・ルーチンを追加します。

   * -----------------------------------------------------------------------------------
Evtroutine Handling(#CustomFrameworkManager.ChangeBackgroundTextStyle) Tostyle(#ToStyle)

#CurrentContent.Style <= #ToStyle

#CurrentContent.Height := #ToStyle.FontSize + 2

Endroutine

* -----------------------------------------------------------------------------------
Evtroutine Handling(#CustomFrameworkManager.ChangeBackgroundImage) Imagename(#ImageName)

#Image.Image <= #SYS_APPLN.CreateBitmap( ("VLFONE/Images/Black/XLarge/" + #ImageName) )

Endroutine

* -----------------------------------------------------------------------------------

...

   *Drop any reference to the custom framework manager 
#CustomFrameworkManager <= *null


 uTerminate uTerminate メソッドが無い場合、以下を追加します。

   Mthroutine Name(uTerminate) Options(*REDEFINE)

* Drop any reference to the custom framework manager
#CustomFrameworkManager <= *null

* Delegate to the ancestor component in case it wants to clean up anything
#COM_ANCESTOR.uTerminate

Endroutine

...