umbraco でカスタム セクションを作成し、trees.config と applications.config をセットアップし、umbraco/custom などの下にファイルを追加しました。たとえば、umbraco 6 の管理パネルでカスタム セクションを作成する方法は?
trees.config:
<add application="custom" alias="custom" title="custom" assembly="CustomSection" type="Trees.LoadCustomTree" silent="false" initialize="true" iconClosed=".sprTreeFolder" iconOpen=".sprTreeFolder_o" action="" sortOrder="0" />
アプリケーション.config
<add alias="custom" name="custom" icon="custom.gif" sortOrder="10" />
それでも、ユーザー編集画面にカスタム セクションが表示されません。
設定や注意が必要なことはありますか?
ありがとう