예제 #1
0
 /// <summary>
 /// Get controls related to specified control 
 /// </summary>
 /// <param name="ctrl">Original control</param>
 /// <param name="resultType">Type of resulting related controls</param>
 /// <param name="edgesType">Optional edge controls type</param>
 public abstract List<IGraphControl> GetRelatedControls(IGraphControl ctrl, GraphControlType resultType = GraphControlType.VertexAndEdge, EdgesType edgesType = EdgesType.Out);
예제 #2
0
 public static void SetHighlightControl(DependencyObject obj, GraphControlType value)
 {
     obj.SetValue(HighlightControlProperty, value);
 }
예제 #3
0
 /// <summary>
 /// Get controls related to specified control
 /// </summary>
 /// <param name="vc">Original control</param>
 /// <param name="resultType">Type of resulting related controls</param>
 /// <param name="edgesType">Optional edge controls type</param>
 public virtual List <IGraphControl> GetRelatedControls(IGraphControl ctrl, GraphControlType resultType = GraphControlType.VertexAndEdge, EdgesType edgesType = EdgesType.Out)
 {
     return(null);
 }
예제 #4
0
 /// <summary>
 /// Get controls related to specified control
 /// </summary>
 /// <param name="ctrl">Original control</param>
 /// <param name="resultType">Type of resulting related controls</param>
 /// <param name="edgesType">Optional edge controls type</param>
 public abstract List <IGraphControl> GetRelatedControls(IGraphControl ctrl, GraphControlType resultType = GraphControlType.VertexAndEdge, EdgesType edgesType = EdgesType.Out);
예제 #5
0
 public static void SetHighlightControl(DependencyObject obj, GraphControlType value)
 {
     obj.SetValue(HighlightControlProperty, value);
 }