PlotCommands.cs 948 B

123456789101112131415161718192021222324
  1. // --------------------------------------------------------------------------------------------------------------------
  2. // <copyright file="PlotCommands.cs" company="OxyPlot">
  3. // Copyright (c) 2020 OxyPlot contributors
  4. // </copyright>
  5. // <summary>
  6. // Provides a standard set of commands for the <see cref="PlotView" /> control.
  7. // </summary>
  8. // --------------------------------------------------------------------------------------------------------------------
  9. namespace OxyPlot.Wpf
  10. {
  11. using System.Windows.Input;
  12. /// <summary>
  13. /// Provides a standard set of commands for the <see cref="PlotViewBase" /> control.
  14. /// </summary>
  15. public static class PlotCommands
  16. {
  17. /// <summary>
  18. /// Gets the value that represents the "Reset all axes" command.
  19. /// </summary>
  20. public static readonly ICommand ResetAxes = new RoutedUICommand("Reset all axes", "ResetAxes", typeof(PlotViewBase));
  21. }
  22. }