Bagikan melalui


IDtsComponentUI Antarmuka

Definisi

Penting

API ini bukan kompatibel CLS.

Menentukan metode yang dipanggil oleh SSIS Designer untuk antarmuka pengguna komponen aliran data.

public interface class IDtsComponentUI
[System.CLSCompliant(false)]
public interface IDtsComponentUI
[<System.CLSCompliant(false)>]
type IDtsComponentUI = interface
Public Interface IDtsComponentUI
Atribut

Contoh

Sampel kode berikut menunjukkan kelas yang mengimplementasikan <xref:Microsoft.SqlServer.Dts.Pipeline.Design.IdtsComponentUI> antarmuka. Untuk informasi selengkapnya dan sampel lengkapnya, lihat Mengembangkan Antarmuka Pengguna untuk Komponen Aliran Data.

using System;  
using System.Windows.Forms;  
using Microsoft.SqlServer.Dts.Runtime;  
using Microsoft.SqlServer.Dts.Pipeline.Design;  
using Microsoft.SqlServer.Dts.Pipeline.Wrapper;  

namespace Microsoft.Samples.SqlServer.Dts  
{  
    public class SampleComponentUI : IDtsComponentUI  
    {  
        IDTSComponentMetaData100 md;  
        IServiceProvider sp;  

        public void Help(System.Windows.Forms.IWin32Window parentWindow)  
        {  
        }  
        public void New(System.Windows.Forms.IWin32Window parentWindow)  
        {  
        }  
        public void Delete(System.Windows.Forms.IWin32Window parentWindow)  
        {  
        }  
        public bool Edit(System.Windows.Forms.IWin32Window parentWindow, Variables vars, Connections cons)  
        {  
            // Create the component's form, and then display it.  
            SampleComponentUIForm componentEditor = new SampleComponentUIForm(cons, vars, md);  

            DialogResult result  = componentEditor.ShowDialog(parentWindow);  

            if (result == DialogResult.OK)  
                return true;  

            return false;  
        }  
        public void Initialize(IDTSComponentMetaData100 dtsComponentMetadata, IServiceProvider serviceProvider)  
        {  
            // Store the component metadata.  
            this.md = dtsComponentMetadata;  
        }  
    }  
}  
Imports System   
Imports System.Windows.Forms   
Imports Microsoft.SqlServer.Dts.Runtime   
Imports Microsoft.SqlServer.Dts.Pipeline.Design   
Imports Microsoft.SqlServer.Dts.Pipeline.Wrapper   

Public Class SampleComponentUI   
Implements IDtsComponentUI   
 Private md As IDTSComponentMetaData100   
 Private sp As IServiceProvider   

 Public Sub Help(ByVal parentWindow As System.Windows.Forms.IWin32Window)   
 End Sub   

 Public Sub New(ByVal parentWindow As System.Windows.Forms.IWin32Window)   
 End Sub   

 Public Sub Delete(ByVal parentWindow As System.Windows.Forms.IWin32Window)   
 End Sub   

 Public Function Edit(ByVal parentWindow As System.Windows.Forms.IWin32Window, ByVal vars As Variables, ByVal cons As Connections) As Boolean   
   Dim componentEditor As SampleComponentUIForm = New SampleComponentUIForm(cons, vars, md)   
   Dim result As DialogResult = componentEditor.ShowDialog(parentWindow)   
   If result = DialogResult.OK Then   
     Return True   
   End If   
   Return False   
 End Function   

 Public Sub Initialize(ByVal dtsComponentMetadata As IDTSComponentMetaData100, ByVal serviceProvider As IServiceProvider)   
   Me.md = dtsComponentMetadata   
 End Sub   
End Class  

Keterangan

Pengembang komponen dapat menyediakan antarmuka pengguna untuk komponen aliran data dengan menentukan Jenis dan menerapkan antarmuka ini di UITypeName properti DtsPipelineComponentAttribute atribut . Perancang memanggil metode antarmuka ini ketika komponen ditambahkan, dihapus, dan diedit di dalam SSIS Designer.

Metode

Delete(IWin32Window)

Dipanggil ketika komponen dihapus dari permukaan SSIS Designer.

Edit(IWin32Window, Variables, Connections)

Dipanggil saat komponen diedit.

Help(IWin32Window)

[Dicadangkan untuk digunakan di masa mendatang.]

Initialize(IDTSComponentMetaData100, IServiceProvider)

Dipanggil untuk menginisialisasi antarmuka pengguna komponen.

New(IWin32Window)

Dipanggil saat komponen awalnya ditambahkan ke tugas Aliran Data.

Berlaku untuk