Ignore:
Timestamp:
Jan 17, 2011, 9:12:38 AM (13 years ago)
Author:
Sam Habiel
Message:

CalendarGrid:

  • Added PositionGrid from CGView
  • Added Delegates from other classes that contained just one line.

CGAppointmentChangedArgs & CGSelectionChangedArgs:

  • Changed to use automatic properties

CGAvailability:

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGSelectionChangedArgs.cs

    r622 r1068  
    33    using System;
    44    /// <summary>
    5     /// This class was regenerated from Calendargrid.dll using Reflector.exe
    6     /// by Sam Habiel for WorldVista. The original source code is lost.
     5    /// Custom Event Args for SelectionChange. Don't know totally what it does yet.
     6    /// Changed to automatic properties.
    77    /// </summary>
    88    [Serializable]
    99    public class CGSelectionChangedArgs : EventArgs
    1010    {
    11         private DateTime m_dEnd;
    12         private DateTime m_dStart;
    13         private string m_sResource;
     11        public DateTime EndTime {get; set;}
    1412
    15         public DateTime EndTime
    16         {
    17             get
    18             {
    19                 return this.m_dEnd;
    20             }
    21             set
    22             {
    23                 this.m_dEnd = value;
    24             }
    25         }
     13        public string Resource {get; set;}
    2614
    27         public string Resource
    28         {
    29             get
    30             {
    31                 return this.m_sResource;
    32             }
    33             set
    34             {
    35                 this.m_sResource = value;
    36             }
    37         }
    38 
    39         public DateTime StartTime
    40         {
    41             get
    42             {
    43                 return this.m_dStart;
    44             }
    45             set
    46             {
    47                 this.m_dStart = value;
    48             }
    49         }
     15        public DateTime StartTime {get; set;}
    5016    }
    5117}
Note: See TracChangeset for help on using the changeset viewer.