簡體   English   中英

Flex4將滾動條添加到應用程序

[英]Flex4 add scrollbar to application

我正在嘗試使用minHeight = 600和minWidth = 800創建一個登錄頁面。 如果用戶將尺寸調整為較小的分辨率,則僅添加滾動條。 我遵循了教程 程式碼:Main.xml

<?xml version="1.0"?>
<!-- containers\application\AppSparkScroll.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:mx="library://ns.adobe.com/flex/mx" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           minWidth="800" minHeight="600"
           width="100%" height="100%"
           backgroundColor="#292929"
           skinClass="skins.CustomApplicationSkin">

<s:Panel title="Login" id="loginPanel" verticalCenter="0" horizontalCenter="0">

    <mx:Form>

        <mx:FormItem label="Username" width="100%">
            <s:TextInput width="100%" id="username" />
        </mx:FormItem>
        <mx:FormItem label="Password" width="100%">
            <s:TextInput width="100%" displayAsPassword="true" id="password" />
        </mx:FormItem>
        <mx:FormItem>
            <s:Button label="Login" id="loginButton" />
        </mx:FormItem>

    </mx:Form>

</s:Panel>

skins.CustomApplicationSkin.mxml

<?xml version="1.0" encoding="utf-8"?>
<!-- containers\application\mySkins\MyAppSkin.mxml -->
<s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    xmlns:s="library://ns.adobe.com/flex/spark">

<fx:Metadata>
    [HostComponent("spark.components.Application")]
</fx:Metadata> 

<s:states>
    <s:State name="normal" />
    <s:State name="disabled" />
</s:states>

<!-- fill -->
<s:Rect id="backgroundRect" left="0" right="0" top="0" bottom="0">
    <s:fill>
        <s:SolidColor color="0xFFFFFF" />
    </s:fill>
</s:Rect>

<s:Scroller height="100%" width="100%">
    <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" />        
</s:Scroller>
</s:Skin>

對我來說同樣的問題,我也遵循相同的教程。 如果在滾動條中添加了horizo​​ntalScrollPolicy =“ on” verticalScrollPolicy =“ on”,則可以看到滾動條,但是即使瀏覽器的大小小於內容大小,它們也無法工作。

在index.html文件的樣式聲明中,粘貼以下代碼,

html, body  {height:100%; width:100%; min-width:800px; min-height:600px; overflow:auto; position:absolute;}

我希望它能正常工作。如果屏幕尺寸小於800X600,則會出現滾動條。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM