Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 17:44]
ejetoro
en:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 18:34] (current)
ejetoro [Definition]
Line 13: Line 13:
 **Sintax:** **Sintax:**
 <code xml> <code xml>
- <frame name="id1" ATRIBUTOS/> +<frame name="id1" ... /> 
- + <prop name="PRUEBA" ... /
- <!-- Propiedad que se mostrará en la pestaña 1, y en el frame id1 --+ <prop name="PRUEBA2... /> 
- <prop name="PRUEBAgroup="1frame="id1" />+ <frame name="id2... /> 
 + <prop name="PRUEBA3... /
 + <prop name="PRUEBA4" ... /> 
 + </frame> 
 +</frame>
 </code> </code>
 ====  Spatial location of the frames and its elements  ==== ====  Spatial location of the frames and its elements  ====
 \\ \\
  
-  * The frame nodes may be nested, that is, a frame may be inside of another frame and so on. +The frame nodes may be nested, that is, a frame may be inside of another frame and so on. 
 \\ \\
  
Line 27: Line 31:
 <WRAP clear></WRAP> <WRAP clear></WRAP>
 \\ \\
 +=== Floating frames ===
 +A frame can be positioned on a fixed location, "floating" over the screen, keeping away the background screen from being affected by the floating frame.\\
 +\\
 +Positioning is made through the attributes "top" and "left".\\
 +\\
 +Do not use porcentual values in width and height attributes, try to use pixel values instead.\\
 +\\
 +<code xml>
 +<frame name="frmFlotante" floating="true" top="300p" left="200p" width="600p" height="300p" class="FrameAnimateFromRight" >
 + .....
 +</frame>
 +</code>