Class CalledLineChangedEvent
Event for a change of the label, called line in the CallStackViewModel.
public class CalledLineChangedEvent
- Inheritance
-
CalledLineChangedEvent
- Inherited Members
Remarks
This is an implementation of the mediator design pattern. http://www.mindscapehq.com/blog/index.php/2012/02/01/caliburn-micro-part-4-the-event-aggregator/.
Constructors
CalledLineChangedEvent(TraceBackFrame, IProjectItem)
Initializes a new instance of the CalledLineChangedEvent class.
public CalledLineChangedEvent(TraceBackFrame callFrame, IProjectItem projectItem)
Parameters
callFrame
TraceBackFrameFrame with information about the call.
projectItem
IProjectItemItem where the call belongs to.
Properties
CallFrame
Gets the trace back frame from the call.
public TraceBackFrame CallFrame { get; }
Property Value
- TraceBackFrame
ProjectItem
Gets the depending project item.
public IProjectItem ProjectItem { get; }