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
Last revisionBoth sides next revision
en:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 18:44] ejetoroen:wiki:2.-desarrollo-app:2.3.-codigo:a.-estructura-xml:4.-nodo-frame:start [2018/09/05 19:34] – [Definition] ejetoro
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="PRUEBA" group="1" frame="id1" />+ <frame name="id2" ... /
 + <prop name="PRUEBA" ... /> 
 + <prop name="PRUEBA2... /> 
 + </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>