TemplateContainer.cs 391 B

12345678910111213141516171819202122
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : TemplateContainer
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.Web.UI;
  12. namespace System.Web.UI.MobileControls
  13. {
  14. public class TemplateContainer : Panel, INamingContainer
  15. {
  16. public TemplateContainer()
  17. {
  18. }
  19. }
  20. }