ICommanControl.cs 236 B

12345678910
  1. namespace qdr.app.tools.qfu.gui.Subforms
  2. {
  3. internal interface ICommanControl
  4. {
  5. string ViewName { get; }
  6. string Description { get; }
  7. void Execute();
  8. bool Visible { get; set; }
  9. }
  10. }