Ejemplo n.º 1
0
        protected virtual void OnLabelFormatting(LabelFormattingEventArgs e)
        {
            LabelFormattingEventHandler labelFormatting = this.LabelFormatting;

            if (labelFormatting == null)
            {
                return;
            }
            labelFormatting((object)this, e);
        }
Ejemplo n.º 2
0
 private void trackBarElement_LabelFormatting(object sender, LabelFormattingEventArgs e)
 {
     this.OnLabelFormatting(e);
 }