了解UGUI组件的搭建方式,有助于搭建我们自己的UI界面。 Text 文本 text 是UGUI中的基本控件,在Hierarchyi面板创建一个空物体 - 给这个空物体添加一个Text组件即可实现与text空间相同的功能。 Image 图像 Image 是UGUI中的基本控件,在Hierarchyi ...
分类:
编程语言 时间:
2017-11-06 21:29:08
阅读次数:
211
第二章构造布局良好的Windows程序 一. 1.会使用基本控件设计窗体,并合理布局 2.会实现MDI风格的窗体 3.能将数据库中的数据读取出来显示在窗体上 4.能将窗体中的数据保存到数据库 二.菜单栏和工具栏 三.控件进阶 四.设计布局良好的窗体(Anchor Dock) Anchor:锚,使固定 ...
转自:http://www.cnblogs.com/wangjian8888/p/6028777.html 一、静态文本控件 wx.StaticText(parent, id, label, pos=wx.DefaultPosition, size=wx.DefaultSize, style=0, ...
分类:
编程语言 时间:
2017-08-18 11:12:58
阅读次数:
155
常用基本控件javax.swing.JButton在图形界面程序中,按钮可能是使用量最大的控件之一,javax.swing包中JButton类就是用来创建按钮的。如表1所示,为JButton常用的构造方法。javax.swing.JLabelJLabel控件是最简单的Swing组件之一,用于在窗体上显示标签,JLabel既可以显示文本..
分类:
编程语言 时间:
2017-08-14 22:30:08
阅读次数:
175
(一)控件的方式 1.用XML代码定义 <TextView android:layout_width="fill_parent" android:layout_height="wrap_content android:text="Hello World" android:textSize="40sp ...
分类:
其他好文 时间:
2017-06-07 12:32:15
阅读次数:
206
(一)控件的方式 1.用XML代码定义 <TextView android:layout_width="fill_parent" android:layout_height="wrap_content android:text="Hello World" android:textSize="40sp ...
分类:
其他好文 时间:
2017-05-27 00:43:48
阅读次数:
180
2.Activity常用 的方法 View findViewById(int id) 根据组件的ID取得组件对象 setContentView(int layoutResID) 设置布局文件,设置显示组件3.TextVies android:maxLength="6" 允许最大字符数 android ...
分类:
其他好文 时间:
2017-05-18 17:54:27
阅读次数:
200
android: id= ” @id/id值” //设置id值 android: text=”**” //定义显示文字 android: layout_width="wrap_content" //组件宽度为文字宽度 android: layout_height="wrap_content" //组 ...
分类:
其他好文 时间:
2017-05-17 23:32:01
阅读次数:
238
RadioButton(单选按钮) 嵌入到RadioGroup中实现单选效果 android: checkedButton=”radio的id值 ”; int getCheckedRadioButtonId( ); //获得被选中的单选按钮的id CheckBox(复选框) android: che ...
分类:
其他好文 时间:
2017-05-17 14:15:11
阅读次数:
181
RadioButton(单选按钮) 嵌入到RadioGroup中实现单选效果 android: checkedButton=”radio的id值 ”; int getCheckedRadioButtonId( ); //获得被选中的单选按钮的id CheckBox(复选框) android: che ...
分类:
其他好文 时间:
2017-05-17 14:01:04
阅读次数:
169