ITextControl.cs 739 B

1234567891011121314151617181920212223242526272829
  1. #region File Information
  2. //-----------------------------------------------------------------------------
  3. // ITextControl.cs
  4. //
  5. // Microsoft XNA Community Game Platform
  6. // Copyright (C) Microsoft Corporation. All rights reserved.
  7. //-----------------------------------------------------------------------------
  8. #endregion
  9. #region Using Statements
  10. using System;
  11. using System.Collections.Generic;
  12. using System.Linq;
  13. using System.Text;
  14. #endregion
  15. namespace DynamicMenu.Controls
  16. {
  17. /// <summary>
  18. /// The interface for controls that show text
  19. /// </summary>
  20. public interface ITextControl
  21. {
  22. /// <summary>
  23. /// The text to display in this control
  24. /// </summary>
  25. string Text { get; set; }
  26. }
  27. }