| 12345678910111213141516171819 |
- //
- // System.Web.UI.Design.IWebFormsBuilderUIService
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (C) 2004 Novell
- //
- using System.Windows.Forms;
- namespace System.Web.UI.Design
- {
- public interface IWebFormsBuilderUIService
- {
- string BuildColor (System.Windows.Forms.Control owner, string initialColor);
- string BuildUrl (System.Windows.Forms.Control owner, string initialUrl, string baseUrl, string caption, string filter, UrlBuilderOptions options);
- }
- }
|