Sdílet prostřednictvím


UrlBuilder Třída

Definice

Spustí editor adres URL, který uživateli umožňuje vybrat nebo vytvořit adresu URL. Tuto třídu nelze zdědit.

public ref class UrlBuilder sealed
public sealed class UrlBuilder
type UrlBuilder = class
Public NotInheritable Class UrlBuilder
Dědičnost
UrlBuilder

Příklady

Následující příklad kódu ukazuje, jak použít metodu BuildUrl ke spuštění tvůrce adres URL z příkazu nabídky v době návrhu.

// Create a parent control.
System::Windows::Forms::Control^ c = gcnew System::Windows::Forms::Control;
c->CreateControl();

// Launch the Url Builder using the specified control
// parent, initial URL, empty relative base URL path,
// window caption, filter String* and URLBuilderOptions value.
UrlBuilder::BuildUrl( this->Component, c, "http://www.example.com", "Select a URL", "", UrlBuilderOptions::None );
// This method handles the "Launch Url Builder UI" menu command.
// Invokes the BuildUrl method of the System.Web.UI.Design.UrlBuilder.
private void launchUrlBuilder(object sender, EventArgs e)
{
    // Create a parent control.
    System.Windows.Forms.Control c = new System.Windows.Forms.Control();            
    c.CreateControl();            
                
    // Launch the Url Builder using the specified control
    // parent, initial URL, empty relative base URL path,
    // window caption, filter string and URLBuilderOptions value.
    UrlBuilder.BuildUrl(
        this.Component, 
        c, 
        "http://www.example.com", 
        "Select a URL", 
        "", 
        UrlBuilderOptions.None);                      
}
' This method handles the "Launch Url Builder UI" menu command.
' Invokes the BuildUrl method of the System.Web.UI.Design.UrlBuilder.
Private Sub launchUrlBuilder(ByVal sender As Object, ByVal e As EventArgs)
    ' Create a parent control.
    Dim c As New System.Windows.Forms.Control()
    c.CreateControl()

    ' Launch the Url Builder using the specified control
    ' parent, initial URL, empty relative base URL path,
    ' window caption, filter string and URLBuilderOptions value.
    UrlBuilder.BuildUrl( _
        Me.Component, _
        c, _
        "http://www.example.com", _
        "Select a URL", _
        "", _
        UrlBuilderOptions.None)
End Sub

Poznámky

Metoda BuildUrl spustí uživatelské rozhraní pro výběr adresy URL.

Metody

BuildUrl(IComponent, Control, String, String, String, UrlBuilderOptions)

Vytvoří uživatelské rozhraní pro vytvoření nebo výběr adresy URL pomocí zadaného objektu UrlBuilderOptions.

BuildUrl(IComponent, Control, String, String, String)

Vytvoří uživatelské rozhraní pro vytvoření nebo výběr adresy URL.

BuildUrl(IServiceProvider, Control, String, String, String, UrlBuilderOptions)

Vytvoří uživatelské rozhraní pro vytvoření nebo výběr adresy URL pomocí zadaného objektu UrlBuilderOptions.

Equals(Object)

Určuje, zda je zadaný objekt roven aktuálnímu objektu.

(Zděděno od Object)
GetHashCode()

Slouží jako výchozí funkce hash.

(Zděděno od Object)
GetType()

Získá Type aktuální instance.

(Zděděno od Object)
MemberwiseClone()

Vytvoří mělkou kopii aktuálního Object.

(Zděděno od Object)
ToString()

Vrátí řetězec, který představuje aktuální objekt.

(Zděděno od Object)

Platí pro

Viz také