HtmlControl.Style 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取应用于 ASP.NET 文件中指定的 HTML 服务器控件的所有级联样式表 (CSS) 属性的集合。
public:
property System::Web::UI::CssStyleCollection ^ Style { System::Web::UI::CssStyleCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.UI.CssStyleCollection Style { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Style : System.Web.UI.CssStyleCollection
Public ReadOnly Property Style As CssStyleCollection
属性值
CssStyleCollection 对象,它包含 HTML 服务器控件的样式属性。
- 属性
示例
下面的代码示例演示如何使用 Style 属性来确定控件的 HtmlSelect 样式属性。
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
Message.InnerHtml = "<h4>The select box's style collection contains:</h4>";
IEnumerator keys = Select.Style.Keys.GetEnumerator();
while (keys.MoveNext())
{
String key = (String)keys.Current;
Message.InnerHtml += key + "=" + Select.Style[key] + "<br />";
}
}
</script>
<head runat="server">
<title>The select box's style collection contains:</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlControl Style Collection Example</h3>
Make a selection:
<select id="Select"
style="font: 12pt verdana;
background-color:yellow;
color:red;"
runat="server">
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
</select>
<br />
<span id="Message" enableviewstate="false" runat="server" />
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script language="VB" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Message.InnerHtml = "<h4>" & "The select box's style collection contains:" & "</h4>"
Dim keys As IEnumerator = Select1.Style.Keys.GetEnumerator()
While keys.MoveNext()
Dim key As String = CType(keys.Current, String)
Message.InnerHtml &= key & "=" & Select1.Style(key) & "<br />"
End While
End Sub 'Page_Load
</script>
<head runat="server">
<title>" & "The select box's style collection contains:" & "</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>HtmlControl Style Collection Example</h3>
Make a selection:
<select id="Select1"
style="font: 12pt verdana;
background-color:yellow;
color:red;"
runat="server">
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
</select>
<br />
<span id="Message" enableviewstate="false" runat="server" />
</form>
</body>
</html>
注解
使用此属性以编程方式访问 HTML 服务器控件的样式属性。
有关 CSS 样式集合的其他信息,请参阅 System.Web.UI.CssStyleCollection 该类。