protected virtual void OnTimeCellFormatting(TimeCellFormattingEventArgs args)
 {
     if (this.TimeCellFormatting == null)
     {
         return;
     }
     this.TimeCellFormatting((object)this, args);
 }
示例#2
0
 private void PopupContentElement_TimeCellFormatting(
     object sender,
     TimeCellFormattingEventArgs e)
 {
     if (this.TimeCellFormatting == null)
     {
         return;
     }
     this.TimeCellFormatting(sender, e);
 }
示例#3
0
        private void timePickerElement_TimeCellFormatting(object sender, TimeCellFormattingEventArgs e)
        {
            TimeCellFormattingEventHandler formattingEventHandler = (TimeCellFormattingEventHandler)this.Events[RadTimePicker.TimeCellFormattingEventKey];

            if (formattingEventHandler == null)
            {
                return;
            }
            formattingEventHandler(sender, e);
        }