protected override void DisposeManagedResources()
 {
     this.view     = (CalendarView)null;
     this.calendar = (RadCalendar)null;
     this.owner    = (CalendarVisualElement)null;
     base.DisposeManagedResources();
 }
示例#2
0
        protected override void DisposeManagedResources()
        {
            this.view     = null;
            this.calendar = null;
            this.owner    = null;

            base.DisposeManagedResources();
        }
示例#3
0
 internal protected CalendarMultiMonthViewTableElement(CalendarVisualElement owner, RadCalendar calendar, CalendarView view)
     : base(owner, calendar, view)
 {
     this.view = view;
     this.view.ShowColumnHeaders = false;
     this.view.ShowRowHeaders    = false;
     this.view.ShowSelector      = false;
 }
 public CalendarVisualElement(
     CalendarVisualElement owner,
     RadCalendar calendar,
     CalendarView view)
 {
     this.calendar = calendar;
     this.owner    = owner;
     this.view     = view;
 }
示例#5
0
 public CalendarCellElement(CalendarVisualElement owner, RadCalendar calendar, CalendarView view, string text)
     : base(owner, calendar, view)
 {
     this.Text = text;
     // DA SE OPRAVI KLASA NA ELEMENTA!
     if (owner == null)
     {
         base.Calendar = calendar;
         base.View     = view;
     }
 }
示例#6
0
 public CalendarCellElement(
     CalendarVisualElement owner,
     RadCalendar calendar,
     CalendarView view,
     string text)
     : base(owner, calendar, view)
 {
     this.Text = text;
     if (owner != null)
     {
         return;
     }
     this.Calendar = calendar;
     this.View     = view;
 }
 internal protected CalendarHeaderCellElement(CalendarVisualElement owner, string text)
     : base(owner, text)
 {
 }
示例#8
0
 public CalendarCellElement(CalendarVisualElement owner, string text)
     : this(owner, null, null, text)
 {
 }
示例#9
0
 public CalendarCellElement(CalendarVisualElement owner)
     : this(owner, null, null, string.Empty)
 {
 }
示例#10
0
 public CalendarVisualElement(CalendarVisualElement owner)
     : this(owner, null, null)
 {
 }
 protected internal CalendarMultiMonthViewTableElement(CalendarVisualElement owner)
     : this(owner, (RadCalendar)null, (CalendarView)null)
 {
 }
示例#12
0
 public TitleElement(CalendarVisualElement owner, string text)
     : base(owner, null, null)
 {
     this.Text = text;
 }
示例#13
0
 internal protected CalendarMultiMonthViewTableElement(CalendarVisualElement owner)
     : this(owner, null, null)
 {
 }
示例#14
0
 public CalendarCellElement(CalendarVisualElement owner, string text)
     : this(owner, (RadCalendar)null, (CalendarView)null, text)
 {
 }
示例#15
0
 public CalendarCellElement(CalendarVisualElement owner)
     : this(owner, (RadCalendar)null, (CalendarView)null, string.Empty)
 {
 }
示例#16
0
 public CalendarVisualElement(CalendarVisualElement owner)
     : this(owner, (RadCalendar)null, (CalendarView)null)
 {
 }