Question for GoToolDragging

I wrote a subclass for GoToolDragging and applied this class to GoDrawView using ReplaceMouseTool() method.

Like this :
this._view.ReplaceMouseTool(typeof(GoToolDragging), new SomeDraggingTool(this._view));

But It don’t works.

When it is applied to GoView, it works.

How can I do this to work in GoDrawView?

Replace typeof(GoDrawToolDragging)

You want to derive from GoDrawToolDragging if you want the GoRuler / GoRulerCursors support.

OK. It’s done.
Thanks a lot, Jake.