コード例 #1
0
 internal LgStringFinder(GraphmapsViewer graphViewer, Func<Drawing.Node, LgNodeInfo> drawingNodeToLgNodeInfo) {
     _graphViewer = graphViewer;
     _drawingNodeToLgNodeInfo = drawingNodeToLgNodeInfo;
 }
コード例 #2
0
 internal GvMouseEventArgs(MouseEventArgs argsPar, GraphmapsViewer graphScrollerP) {
     args = argsPar;
     position = args.GetPosition((IInputElement) graphScrollerP.GraphCanvas.Parent);
 }
コード例 #3
0
 public TileFetcher(GraphmapsViewer graphViewer, Func<Set<Triple>> desiredActiveSetFunc) {
     _graphViewer = graphViewer;
     _desiredActiveSetFunc = desiredActiveSetFunc;
     SetupTilesDispatcherTimer();
 }