다음을 통해 공유


Calendar.ShowGridLines 속성

정의

Calendar 컨트롤의 날짜가 모눈선으로 구분되는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool ShowGridLines { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool ShowGridLines { get; set; }
public bool ShowGridLines { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.ShowGridLines : bool with get, set
member this.ShowGridLines : bool with get, set
Public Property ShowGridLines As Boolean

속성 값

Boolean

Calendar 컨트롤의 날짜가 모눈선으로 구분되면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

특성

예제

다음 코드 예제에서는 컨트롤에서 ShowGridLinesCalendar 사이의 눈금선을 표시 하는 속성을 사용 하는 방법을 보여 줍니다.

<%@ 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" >
<head>
    <title>Calendar Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>Calendar Example</h3>

      <asp:Calendar id="calendar1" runat="server"
           ShowGridLines="True"/>
            
   </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" >
<head>
    <title>Calendar Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>Calendar Example</h3>

      <asp:Calendar id="calendar1" runat="server"
           ShowGridLines="True"/>
            
   </form>        

</body>
</html>
<%@ 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 runat="server" >
  
      void Check_Change(Object sender, EventArgs e)
      {
   
         // Show or hide the gridlines in the Calendar control
         // depending on the state of the ShowGridLinesCheckBox CheckBox
         // control.
         if (ShowGridLinesCheckBox.Checked)
         {

            Calendar1.ShowGridLines = true;

         }
         else
         {

            Calendar1.ShowGridLines = false;

         }

      }
  
   </script>
  
<head runat="server">
    <title> Calendar ShowGridLines Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowGridLines Example </h3>

      Select whether to show or hide the gridlines.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowGridLinesCheckBox"
           Text="Show/Hide gridlines"
           AutoPostBack="True"
           Checked="False"
           OnCheckedChanged="Check_Change"
           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 runat="server" >
  
      Sub Check_Change(sender As Object, e As EventArgs)
   
         ' Show or hide the gridlines in the Calendar control
         ' depending on the state of the ShowGridLinesCheckBox CheckBox
         ' control.
         If ShowGridLinesCheckBox.Checked Then

            Calendar1.ShowGridLines = True

         Else

            Calendar1.ShowGridLines = False

         End If

      End Sub
  
   </script>
  
<head runat="server">
    <title> Calendar ShowGridLines Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowGridLines Example </h3>

      Select whether to show or hide the gridlines.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowGridLinesCheckBox"
           Text="Show/Hide gridlines"
           AutoPostBack="True"
           Checked="False"
           OnCheckedChanged="Check_Change"
           runat="server"/>
  
   </form>

</body>
</html>

설명

컨트롤의 ShowGridLines 날짜 Calendar 가 눈금선으로 구분되는지 여부를 지정하려면 이 속성을 사용합니다.

적용 대상