Inheritance: System.Windows.RoutedEventArgs
Example #1
0
        /// <summary>
        /// Gets the string trace that is used to build the path.
        /// </summary>
        /// <returns></returns>
        public string GetTracePathValue()
        {
            ApplyPropertiesEventArgs e = new ApplyPropertiesEventArgs(DataContext, this, BreadcrumbBar.ApplyPropertiesEvent);

            e.Trace      = Trace;
            e.TraceValue = TraceValue;
            this.RaiseEvent(e);
            return(e.TraceValue);
        }
Example #2
0
        private void ApplyProperties(object item)
        {
            ApplyPropertiesEventArgs e = new ApplyPropertiesEventArgs(item, this, BreadcrumbBar.ApplyPropertiesEvent);

            e.Image      = Image;
            e.Trace      = Trace;
            e.TraceValue = TraceValue;
            this.RaiseEvent(e);
            Image = e.Image;
            Trace = e.Trace;
        }
Example #3
0
 private void ApplyProperties(object item)
 {
     ApplyPropertiesEventArgs e = new ApplyPropertiesEventArgs(item, this, BreadcrumbBar.ApplyPropertiesEvent);
     e.Image = Image;
     e.Trace = Trace;
     e.TraceValue = TraceValue;
     this.RaiseEvent(e);
     Image = e.Image;
     Trace = e.Trace;
 }
Example #4
0
 /// <summary>
 /// Gets the string trace that is used to build the path.
 /// </summary>
 /// <returns></returns>
 public string GetTracePathValue()
 {
     ApplyPropertiesEventArgs e = new ApplyPropertiesEventArgs(DataContext, this, BreadcrumbBar.ApplyPropertiesEvent);
     e.Trace = Trace;
     // BUG: 1
     e.TraceValue = TraceValue;
     this.RaiseEvent(e);
     return e.TraceValue;
 }