移动控件介绍及详细使用方法
2011-01-06 10:58:45 来源:WEB开发网属性 说明
FirstDayOfWeek 在日历的第一列中显示一周中的某一天
SelectionMode 该属性允许用户将日历控件的选择模式设置为单个日期、周或整月。该属性的枚举值为:None、Day、DayWeek和 DayWeekMonth.
SelectedDate 该属性用来获取或设置当前选定的日期。我们可以在设计阶段设置该属性值,也可以在运行时改变该值。
VisibleDate 指定要显示月份的日期,移动设备默认状态下将会直接在当前的屏幕中显示该日期。所以该属性和SelectedDate是截然不同的。
现在我们来用Calendar 控件实现一个简单功能。当用户在Calendar控件中选取了一个日期后,该日期将会在一个文本框中进行显示。
清单3:CalendarDefault.aspx
< %@ Page Language="C#" AutoEventWireup="true" CodeFile="CalendarDefault.aspx.cs" Inherits="CalendarDefault" EnableViewState="true"%>
< %@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %>
< html xmlns="http://www.w3.org/1999/xhtml" >
< body>
< mobile:Form id="Form1" runat="server">事件日期< br />
< mobile:TextBox id="txtEventDate" runat="server">< /mobile:TextBox>
< mobile:Calendar id="EventCalendar" FirstDayOfWeek="Sunday" Runat="server"
OnSelectionChanged="EventCalendar_SelectionChanged">
< /mobile:Calendar>
< /mobile:Form>
< /body>
< /html>
清单4:CalendarDefault.aspx.cs
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.Mobile;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.MobileControls;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public partial class CalendarDefault :
更多精彩
赞助商链接