Changeset 10347 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.cs
- Timestamp:
- 01/16/14 16:37:56 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphView.cs
r10302 r10347 7 7 [View("GenealogyGraphView")] 8 8 [Content(typeof(GenealogyGraph), IsDefaultView = false)] 9 public sealedpartial class GenealogyGraphView : ItemView {9 public partial class GenealogyGraphView : ItemView { 10 10 public new IGenealogyGraph Content { 11 11 get { return (IGenealogyGraph)base.Content; } … … 31 31 #region Event Handlers (Content) 32 32 33 public v oid graphChart_GenealogyGraphNodeClicked(object sender, MouseEventArgs args) {33 public virtual void graphChart_GenealogyGraphNodeClicked(object sender, MouseEventArgs args) { 34 34 var content = ((VisualGenealogyGraphNode)sender).Data.Content; 35 35 if (content != null) {
Note: See TracChangeset
for help on using the changeset viewer.