AttributeCollection.CssStyle 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 AttributeCollection 개체가 속해 있는 ASP.NET 서버 컨트롤에 대한 스타일 컬렉션을 가져옵니다.
public:
property System::Web::UI::CssStyleCollection ^ CssStyle { System::Web::UI::CssStyleCollection ^ get(); };
public System.Web.UI.CssStyleCollection CssStyle { get; }
member this.CssStyle : System.Web.UI.CssStyleCollection
Public ReadOnly Property CssStyle As CssStyleCollection
속성 값
현재 서버 컨트롤에 대한 스타일이 들어 있는 컬렉션입니다.
예제
다음 예제에서는 서버 컨트롤의 AttributeCollection 개체에 프로그래밍 방식으로 CSS 스타일 값을 추가하는 방법을 보여 줍니다. 단추를 클릭하면 명명된 서버 컨트롤의 TextBox 배경색이 서버 TextBox1
DropDownList1
컨트롤에서 선택한 항목으로 DropDownList 설정됩니다.
private void Button2_Click(object sender, System.EventArgs e)
{
string myColor;
AttributeCollection myAttributes = TextBox1.Attributes;
myColor = DropDownList1.Items[DropDownList1.SelectedIndex].Text;
// Add the attribute "background-color" in to the CssStyle.
myAttributes.CssStyle.Add("background-color",myColor);
}
Private Sub Button2_Click(sender As Object, e As System.EventArgs)
Dim myColor As String
Dim myAttributes As AttributeCollection = TextBox1.Attributes
myColor = DropDownList1.Items(DropDownList1.SelectedIndex).Text
' Add the attribute "background-color" in to the CssStyle.
myAttributes.CssStyle.Add("background-color", myColor)
End Sub
설명
포함된 ASP.NET 웹 페이지를 구문 분석할 CssStyleCollection 때 특정 HTML 서버 컨트롤에 대해 선언된 모든 스타일이 개체에 추가됩니다. 이 속성을 사용하여 서버 컨트롤에 대해 선언된 스타일을 추가, 제거 및 반복할 수 있습니다.