0

メインメニュー用とサブメニュー用の 2 つのビュースタックがあります。ビュースタックが 1 つだけのときにビュースタックのページ情報を表示したい。もう一つ隠れる。サブメニューのビュースタックをクリックすると、メインメニューのビュースタックが非表示になります。どうやってやるの ?それが正しいかどうかはわかりません。ビュースタックを使用してサブメニューとマニメニューを追加するための他のオプションがある場合は、plz を提案してください。

私は(visible = false)のように試しました サブメニュービュースタックは

     <mx:AddChild position="lastChild">
        <mx:ViewStack x="3" y="94" id="Submenu"  height="499" width="905" visiable="false" >
           <ns1:Pick15view  label="Pick15" x="10" y="10" height="511" width="904" showEffect="WipeDown" hideEffect="WipeUp">
       </ns1:Pick15view>
     <ns1:Lottoview label="Lotto" x="0" y="10" showEffect="WipeDown" hideEffect="WipeUp" height="493" width="902">
      </ns1:Lottoview>
         <ns1:Trottingbet  label="Trottingbet/Galobet" showEffect="WipeDown" hideEffect="WipeUp" x="362" y="183" height="489">
     </ns1:Trottingbet>
       </mx:ViewStack>
  </mx:AddChild>

メインメニュービュースタックは

<mx:AddChild position="lastChild">
      <mx:ViewStack x="3" y="94" id="MainMenu"  height="499" width="905"  visible="true" >
       <ns1:home  label="Pick15" x="10" y="10" height="511" width="904" showEffect="WipeDown" hideEffect="WipeUp">
   </ns1:home>
 <ns1:Contact label="Lotto" x="0" y="10" showEffect="WipeDown" hideEffect="WipeUp" height="493" width="902">
  </ns1:Contact>
     <ns1:Rule  label="Trottingbet/Galobet" showEffect="WipeDown" hideEffect="WipeUp" x="362" y="183" height="489">
 </ns1:Rule>
   </mx:ViewStack>

4

1 に答える 1

1

属性 "visible" のスペルが間違っています。「見える」のではなく「見える」べきです。

また、使用することもできますincludeInLayout="false"

<mx:ViewStack x="3" y="94" id="Submenu"  height="499" width="905" visible="false" includeInLayout="false">

メインメニューも同様。

于 2009-07-24T08:13:52.033 に答える