Calendar.ShowNextPrevMonth 속성

정의

Calendar 컨트롤이 제목 구역에 다음 달 및 이전 달 탐색 요소를 표시하는지 여부를 나타내는 값을 가져오거나 설정합니다.

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

속성 값

Boolean

Calendar가 제목 구역에 다음 달 및 이전 달 탐색 요소를 표시하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

특성

예제

다음 코드 예제에서는 제목 섹션에서 다음 달과 이전 달 탐색 컨트롤을 숨기려면 속성을 사용 ShowNextPrevMonth 하는 방법을 보여 줍니다.

<%@ 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"
           ShowNextPrevMonth="False"/>
            
   </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"
           ShowNextPrevMonth="False"/>
            
   </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 navigation controls to the next and previous  
         // months in the Calendar control depending on the state of the 
         // ShowNextPrevMonthCheckBox CheckBox control.
         if (ShowNextPrevMonthCheckBox.Checked)
         {

            Calendar1.ShowNextPrevMonth = true;

         }
         else
         {

            Calendar1.ShowNextPrevMonth = false;

         }

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

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

      Select whether to show or hide the next and previous month 
      navigation controls.

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

      <br /><br />

      <asp:CheckBox id="ShowNextPrevMonthCheckBox"
           Text="Show/Hide the navigation controls."
           AutoPostBack="True"
           Checked="True"
           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 navigation controls to the next and previous  
         ' months in the Calendar control depending on the state of the 
         ' ShowNextPrevMonthCheckBox CheckBox control.
         If ShowNextPrevMonthCheckBox.Checked Then

            Calendar1.ShowNextPrevMonth = True

         Else

            Calendar1.ShowNextPrevMonth = False

         End If

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

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

      Select whether to show or hide the next and previous month 
      navigation controls.

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

      <br /><br />

      <asp:CheckBox id="ShowNextPrevMonthCheckBox"
           Text="Show/Hide the navigation controls."
           AutoPostBack="True"
           Checked="True"
           OnCheckedChanged="Check_Change"
           runat="server"/>
  
   </form>

</body>
</html>

설명

ShowNextPrevMonth 이 속성을 사용하여 다음 달 및 이전 달 탐색 요소가 제목 섹션에 표시되는지 여부를 지정합니다.

속성을 사용하여 NextPrevStyle 다음 달 및 이전 달 탐색 컨트롤의 모양을 사용자 지정할 수 있습니다.

적용 대상

추가 정보