IObjectCanvas.cs 286 B

12345678910111213141516
  1. namespace IndexFormula.Finance.Win
  2. {
  3. using IndexFormula.Finance;
  4. using System;
  5. using System.Windows.Forms;
  6. public interface IObjectCanvas
  7. {
  8. FormulaChart Chart { get; }
  9. Control DesignerControl { get; }
  10. bool Designing { get; set; }
  11. }
  12. }