コード例 #1
0
 internal ScheduleBoxEvent(ScheduleBoxEx objOwner, int intEventId, string strSubject, DateTime objStart, DateTime objEnd)
 {
     this.EventId = intEventId;
     this.Owner = objOwner;
     this.Subject = strSubject;
     this.End = objEnd;
     this.Start = objStart;
 }
コード例 #2
0
 internal ScheduleBoxEventCollection(ScheduleBoxEx objOwner)
 {
     this.mobjOwner = objOwner;
     this.mobjEvents = new ArrayList();
 }
コード例 #3
0
ファイル: Form2.cs プロジェクト: carlosgilf/prettyjs
 private void scheduleBox1_EventDoubleClick(object sender, ScheduleBoxEx.ScheduleBoxEventArgs e)
 {
 }
コード例 #4
0
ファイル: ScheduleBox.cs プロジェクト: carlosgilf/prettyjs
 public bool HasShare(ScheduleBoxEx.EventSite objEvent)
 {
     return this.mobjShared.Contains(objEvent);
 }
コード例 #5
0
ファイル: ScheduleBox.cs プロジェクト: carlosgilf/prettyjs
 public void AddShare(ScheduleBoxEx.EventSite objEvent)
 {
     this.mobjShared.Add(objEvent);
 }