我的代码如下;
1, ) 标签和按钮都是重叠的。我该如何解决?(我知道布局absolute
默认设置为,但是当我删除minWidth="955" minHeight="600"
并包含时layout="horizontal"
,出现以下错误)
Description Resource Path Location Type
Initializer for 'layout': values of type spark.layouts.supportClasses.LayoutBase cannot be represented in text. HelloFlex.mxml /HelloFlex/src line 4 Flex Problem
2.) 我可以知道标签的含义xmlns:fx
xmlns:s
xmlns:mx
以及我应该在哪些情况下使用它们吗?
3.) 在 Flex Builder 4.6 中,在设计模式下我可以用Drag-and-drop
组件来设计用户界面吗?
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" >
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<mx:Label text="Hello World"/>
<mx:Button label="Click"/>
</s:Application>