collapsiblepanel.skin

来自「一个包含AJAX所有功能的示例网站以及源代码,非常好学习!」· SKIN 代码 · 共 30 行

SKIN
30
字号
<%--
Default skin template. The following skins are provided as examples only.

1. Named control skin. The SkinId should be uniquely defined because
   duplicate SkinId's per control type are not allowed in the same theme.

<asp:GridView runat="server" SkinId="gridviewSkin" BackColor="White" >
   <AlternatingRowStyle BackColor="Blue" />
</asp:GridView>

2. Default skin. The SkinId is not defined. Only one default 
   control skin per control type is allowed in the same theme.

<asp:Image runat="server" ImageUrl="~/images/image1.jpg" />
--%>
<%@ Register
    Assembly="AjaxControlToolkit"
    Namespace="AjaxControlToolkit"
    TagPrefix="ajaxToolkit" %>
<%-- Default skin for all collapsible panels on the sample website --%>
<ajaxToolkit:CollapsiblePanelExtender runat="server"
    ExpandDirection="Vertical"
    ExpandedImage="~/images/collapse.jpg"
    ExpandedText="Collapse"
    CollapsedImage="~/images/expand.jpg"
    CollapsedText="Expand"
    SuppressPostBack="true" />
<%-- Empty skin to avoid default collapsible panel skin just for the collapsible panel demo--%>
<ajaxToolkit:CollapsiblePanelExtender runat="server"
    SkinID="CollapsiblePanelDemo" />    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?