ASP.NET Mobile TextView Control |
|||||||||||||||||||||||||||||||||||||||||
| 作者:佚名 来源:本站整理 发布时间:2008-3-14 20:48:29 | |||||||||||||||||||||||||||||||||||||||||
Definition and Usage
|
| Property 属性 |
Value 值 |
Description 描述 |
|---|---|---|
| Alignment | left center right |
Optional. How to align the textbox 可选参数。指定文本框的对齐方式 |
| BackColor | rgb(x,x,x) #xxxxxx colorname |
Optional. A background color for the textbox 可选参数。指定文本框的背景颜色 |
| ForeColor | rgb(x,x,x) #xxxxxx colorname |
Optional. A foreground color for the textbox 可选参数。指定文本框的前景颜色 |
| Font-Bold | false true |
Optional. Specifies whether or not the text in the textbox should be bold 可选参数。指定文本框中的文本字体是否以粗体显示 |
| Font-Italic | false true |
Optional. Specifies whether or not the text in the textbox should be italic 可选参数。指定文本框中的文本字体是否以斜体显示 |
| Font-Name | fontname | Optional. Specifies the font name of the text in the textbox 可选参数。指定文本框中文本的字体名称 |
| Font-Size | normal small large |
Optional. Specifies the font size of the text in the textbox 可选参数。指定文本框中的字体尺寸大小 |
| id | unique_name | Optional. A unique id for the control 可选参数。为控件指定一个独立的id |
| runat | "server" | Required. Specifies that the control is a server control 必要参数。指定该控件是否为服务器控件 |
| StyleReference | name_of_style_element | Optional. Specifies a reference to a style to be applied to the control 可选参数。指定一个应用于控件的样式参数 |
| Text | text | Optional. The text to display in the textbox 可选参数。指定在文本框中显示的文本 |
| Wrapping | wrap nowrap |
Optional. Specifies whether or not the text in the textbox should wrap 可选参数。指定文本框中的文本是否允许被嵌套 |
Example 1
案例1
The following example will declare one form in an .aspx file. The form has a TextView control containing a long text:
下面的案例将在aspx 文件中创建一张表单。该表单包含一个TextView 控件(该空间还包含一个长文本):
<%@ Page <Mobile:Form runat="server"> |
Example 2
案例2
The following example will declare one form in an .aspx file. The form has a TextView control containing a long text. The text will be centered on the page and displayed in italic:
下面的案例将在 .aspx文件中声明一张表单。该表单包含一个TextView 控件(该空间还包含一个长文本)。该文本将在页面内居中对齐,并以斜体字显示:
<%@ Page <Mobile:Form runat="server"> |
