IWebFormsBuilderUIService.cs 490 B

12345678910111213141516171819
  1. //
  2. // System.Web.UI.Design.IWebFormsBuilderUIService
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Windows.Forms;
  10. namespace System.Web.UI.Design
  11. {
  12. public interface IWebFormsBuilderUIService
  13. {
  14. string BuildColor (System.Windows.Forms.Control owner, string initialColor);
  15. string BuildUrl (System.Windows.Forms.Control owner, string initialUrl, string baseUrl, string caption, string filter, UrlBuilderOptions options);
  16. }
  17. }