awtk/docs/manual/grid_item_t.md
2018-12-21 12:11:40 +08:00

69 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## grid\_item\_t
### 概述
![image](images/grid_item_t_0.png)
grid_item。一个简单的容器控件一般作为grid的子控件。
### 函数
<p id="grid_item_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
| <a href="#grid_item_t_grid_item_cast">grid\_item\_cast</a> | 转换为grid_item对象(供脚本语言使用)。 |
| <a href="#grid_item_t_grid_item_create">grid\_item\_create</a> | 创建grid_item对象 |
### 属性
<p id="grid_item_t_properties">
| 名属性称 | 类型 | 说明 |
| -------- | ----- | ------------ |
### 事件
<p id="grid_item_t_events">
| 事件名称 | 类型 | 说明 |
| -------- | ----- | ------- |
#### grid\_item\_cast 函数
* 函数原型:
```
widget_t* grid_item_cast (widget_t* widget);
```
* 参数说明:
-----------------------
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | grid\_item对象。 |
| widget | widget\_t* | grid\_item对象。 |
* 函数功能:
> <p id="grid_item_t_grid_item_cast"> 转换为grid_item对象(供脚本语言使用)。
#### grid\_item\_create 函数
* 函数原型:
```
widget_t* grid_item_create (widget_t* parent, xy_t x, xy_t y, wh_t w, wh_t h);
```
* 参数说明:
-----------------------
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | widget\_t* | 对象。 |
| parent | widget\_t* | 父控件 |
| x | xy\_t | x坐标 |
| y | xy\_t | y坐标 |
| w | wh\_t | 宽度 |
| h | wh\_t | 高度 |
* 函数功能:
> <p id="grid_item_t_grid_item_create"> 创建grid_item对象