IDrawingToolSpec.cs 216 B

1234567891011
  1. 
  2. namespace MuchInfo.Chart.WPF.Primitives.Interfaces
  3. {
  4. public interface IDrawingToolSpec
  5. {
  6. void ToolChanged(IDrawingTool aTool);
  7. void DeleteTool();
  8. ScaleLayer ScaleLayer();
  9. }
  10. }