반응형
이전 포스팅에서 이어지는 내용입니다.
이전 포스팅에서는 데이터 소스 구성에 대해서 알아봤습니다.
- 이 블로그의 103번 글
이번 포스팅은 그리드뷰(GridView) 컨트롤의 자동 서식에 관한 내용입니다.
비주얼스튜디오 2022 버전에서 자동 서식 항목이 나타나는 컴퓨터, 나타나지 않은 컴퓨터가 있습니다.
자동서식이 선택이 안되면 수동으로 서식을 수동으로 만들어야 하는데, ... 이 포스팅의 서식을 복사해서 사용할 수 있습니다.
소스를 복사해서 사용해야 하므로 몇 가지 소스를 남기도록 하겠습니다.
1. 브라운 슈가
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" BackColor="#DEBA84" BorderColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3" CellSpacing="2" DataKeyNames="hakbun" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="hakbun" HeaderText="hakbun" ReadOnly="True" SortExpression="hakbun" />
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:BoundField DataField="sx" HeaderText="sx" SortExpression="sx" />
<asp:BoundField DataField="birthday" HeaderText="birthday" SortExpression="birthday" />
<asp:BoundField DataField="department" HeaderText="department" SortExpression="department" />
<asp:BoundField DataField="s_year" HeaderText="s_year" SortExpression="s_year" />
</Columns>
<FooterStyle BackColor="#F7DFB5" ForeColor="#8C4510" />
<HeaderStyle BackColor="#A55129" Font-Bold="True" ForeColor="White" />
<PagerStyle ForeColor="#8C4510" HorizontalAlign="Center" />
<RowStyle BackColor="#FFF7E7" ForeColor="#8C4510" />
<SelectedRowStyle BackColor="#738A9C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#FFF1D4" />
<SortedAscendingHeaderStyle BackColor="#B95C30" />
<SortedDescendingCellStyle BackColor="#F1E5CE" />
<SortedDescendingHeaderStyle BackColor="#93451F" />
</asp:GridView>
반응형
2. 비오는 날
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" BackColor="White" BorderColor="#999999" BorderStyle="None" BorderWidth="1px" CellPadding="3" DataKeyNames="hakbun" DataSourceID="SqlDataSource1" GridLines="Vertical">
<AlternatingRowStyle BackColor="#DCDCDC" />
<Columns>
<asp:BoundField DataField="hakbun" HeaderText="hakbun" ReadOnly="True" SortExpression="hakbun" />
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:BoundField DataField="sx" HeaderText="sx" SortExpression="sx" />
<asp:BoundField DataField="birthday" HeaderText="birthday" SortExpression="birthday" />
<asp:BoundField DataField="department" HeaderText="department" SortExpression="department" />
<asp:BoundField DataField="s_year" HeaderText="s_year" SortExpression="s_year" />
</Columns>
<FooterStyle BackColor="#CCCCCC" ForeColor="Black" />
<HeaderStyle BackColor="#000084" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#999999" ForeColor="Black" HorizontalAlign="Center" />
<RowStyle BackColor="#EEEEEE" ForeColor="Black" />
<SelectedRowStyle BackColor="#008A8C" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#0000A9" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#000065" />
</asp:GridView>
3. 안개 속 라일락
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" BackColor="White" BorderColor="White" BorderStyle="Ridge" BorderWidth="2px" CellPadding="3" CellSpacing="1" DataKeyNames="hakbun" DataSourceID="SqlDataSource1" GridLines="None">
<Columns>
<asp:BoundField DataField="hakbun" HeaderText="hakbun" ReadOnly="True" SortExpression="hakbun" />
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:BoundField DataField="sx" HeaderText="sx" SortExpression="sx" />
<asp:BoundField DataField="birthday" HeaderText="birthday" SortExpression="birthday" />
<asp:BoundField DataField="department" HeaderText="department" SortExpression="department" />
<asp:BoundField DataField="s_year" HeaderText="s_year" SortExpression="s_year" />
</Columns>
<FooterStyle BackColor="#C6C3C6" ForeColor="Black" />
<HeaderStyle BackColor="#4A3C8C" Font-Bold="True" ForeColor="#E7E7FF" />
<PagerStyle BackColor="#C6C3C6" ForeColor="Black" HorizontalAlign="Right" />
<RowStyle BackColor="#DEDFDE" ForeColor="Black" />
<SelectedRowStyle BackColor="#9471DE" Font-Bold="True" ForeColor="White" />
<SortedAscendingCellStyle BackColor="#F1F1F1" />
<SortedAscendingHeaderStyle BackColor="#594B9C" />
<SortedDescendingCellStyle BackColor="#CAC9C9" />
<SortedDescendingHeaderStyle BackColor="#33276A" />
</asp:GridView>
4. 가을
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" BackColor="White" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px" CellPadding="4" DataKeyNames="hakbun" DataSourceID="SqlDataSource1">
<Columns>
<asp:BoundField DataField="hakbun" HeaderText="hakbun" ReadOnly="True" SortExpression="hakbun" />
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:BoundField DataField="sx" HeaderText="sx" SortExpression="sx" />
<asp:BoundField DataField="birthday" HeaderText="birthday" SortExpression="birthday" />
<asp:BoundField DataField="department" HeaderText="department" SortExpression="department" />
<asp:BoundField DataField="s_year" HeaderText="s_year" SortExpression="s_year" />
</Columns>
<FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
<HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC" />
<PagerStyle BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center" />
<RowStyle BackColor="White" ForeColor="#330099" />
<SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
<SortedAscendingCellStyle BackColor="#FEFCEB" />
<SortedAscendingHeaderStyle BackColor="#AF0101" />
<SortedDescendingCellStyle BackColor="#F6F0C0" />
<SortedDescendingHeaderStyle BackColor="#7E0000" />
</asp:GridView>
5. 전문가
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" CellPadding="4" DataKeyNames="hakbun" DataSourceID="SqlDataSource1" ForeColor="#333333" GridLines="None">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Columns>
<asp:BoundField DataField="hakbun" HeaderText="hakbun" ReadOnly="True" SortExpression="hakbun" />
<asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
<asp:BoundField DataField="sx" HeaderText="sx" SortExpression="sx" />
<asp:BoundField DataField="birthday" HeaderText="birthday" SortExpression="birthday" />
<asp:BoundField DataField="department" HeaderText="department" SortExpression="department" />
<asp:BoundField DataField="s_year" HeaderText="s_year" SortExpression="s_year" />
</Columns>
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" ForeColor="White" Font-Bold="True" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
반응형
'C#_ASP.NET' 카테고리의 다른 글
(ASP.NET, C#) 그리드뷰 GridView EmptyDataTemplate 데이터가 없을 때 출력할 문자열 지정하기 (0) | 2023.05.12 |
---|---|
(ASP.NET, C#) 그리드뷰 GridView 선택된 행의 열 내용 가져오기 (0) | 2023.05.12 |
(ASP.NET, C#) 그리드뷰 GridView 데이터 소스 구성, 페이징 설정 (0) | 2023.05.11 |
(ASP.NET, C#) DropDownList 컨트롤 Text Value 쌍 (0) | 2023.05.10 |
(ASP.NET C#) 이미지 카운터 만들기 (0) | 2023.05.09 |