첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

TestProject.zip
다운로드

▶ Blue.skin

<asp:Button runat="server"
    BorderWidth="1px"
    BorderStyle="Dashed"
    BorderColor="Blue" 
    BackColor="Yellow"
    ForeColor="Blue" />

 

728x90

 

▶ Blue.css

body
{
    color : blue;
}

 

300x250

 

▶ MainPage.aspx

<%@ Page
    Language="C#"
    AutoEventWireup="true"
    Theme="Blue"
    CodeBehind="MainPage.aspx.cs"
    Inherits="TestProject.MainPage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Control 클래스 : EnableTheming 속성을 사용해 테마 적용 여부 설정하기</title>
    </head>
    <body>
        <form id="form" runat="server">
            <div>
                블루 스킨 적용 페이지
                <hr />
                <asp:Button ID="button1" runat="server"
                    Text="블루 스킨 적용 버튼" />
                <asp:Button ID="button2" runat="server"
                    EnableTheming="false"
                    Text="블루 스킨 미적용 버튼" />
            </div>
        </form>
    </body>
</html>

 

▶ MainPage.aspx.cs

using System;
using System.Web.UI;

namespace TestProject
{
    /// <summary>
    /// 메인 페이지
    /// </summary>
    public partial class MainPage : Page
    {
        //////////////////////////////////////////////////////////////////////////////////////////////////// Method
        ////////////////////////////////////////////////////////////////////////////////////////// Protected

        #region 페이지 로드시 처리하기 - Page_Load(sender, e)

        /// <summary>
        /// 페이지 로드시 처리하기
        /// </summary>
        /// <param name="sender">이벤트 발생자</param>
        /// <param name="e">이벤트 인자</param>
        protected void Page_Load(object sender, EventArgs e)
        {
        }

        #endregion
    }
}
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요