ParameterCollectionEditor 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供 ParameterCollection 物件的元件編輯器,這個物件是由關聯的資料來源控制項的 Parameters
屬性所指定。
public ref class ParameterCollectionEditor : System::Drawing::Design::UITypeEditor
public class ParameterCollectionEditor : System.Drawing.Design.UITypeEditor
type ParameterCollectionEditor = class
inherit UITypeEditor
Public Class ParameterCollectionEditor
Inherits UITypeEditor
- 繼承
範例
下列程式碼範例示範如何使用 EditorAttribute 屬性,將 和 UITypeEditor (集合編輯器基類產生關聯 ParameterCollectionEditor ,) 類別與 SelectParameters
自訂控制項中的 屬性。
private ParameterCollection selectParams;
// Associate the ParameterCollectionEditor with the SelectParameters.
[Editor(typeof(System.Web.UI.Design.WebControls.
ParameterCollectionEditor),
typeof(UITypeEditor))]
public ParameterCollection SelectParameters
{
get
{
// If there is no selectParams collection, create it.
if (selectParams == null)
selectParams = new ParameterCollection();
return selectParams;
}
set { selectParams = value; }
} // SelectParameters
Private selectParams As ParameterCollection
' Associate the ParameterCollectionEditor with the SelectParameters.
<EditorAttribute(GetType(System.Web.UI.Design.WebControls. _
ParameterCollectionEditor), _
GetType(UITypeEditor))> _
Public Property SelectParameters() As ParameterCollection
Get
If selectParams Is Nothing Then
selectParams = New ParameterCollection()
End If
Return selectParams
End Get
Set(ByVal value As ParameterCollection)
selectParams = value
End Set
End Property ' SelectParameters
備註
類別 ParameterCollectionEditor 提供使用者介面,可在設計階段編輯 Parameter 物件的專案 ParameterCollection ,如其中 Parameters
一個屬性所指定。 屬性 Parameters
包括 DeleteParameters 、 和其他資料來源控制項的 ObjectDataSource 、 UpdateParameters FilterParameters InsertParameters SelectParameters SqlDataSource 、 和 屬性。
選取 ParameterCollectionEditor 視覺化設計工具的 [屬性] 方格中其中 Parameters
一個屬性上的省略號 (...) 按鈕,即可叫用 。
方法 EditValue 會 Parameter 編輯相關聯資料來源控制項的 專案 ParameterCollection 。 方法 GetEditStyle 會取得與此編輯器相關聯的編輯樣式。
建構函式
ParameterCollectionEditor() |
初始化 ParameterCollectionEditor 類別的新執行個體。 |
屬性
IsDropDownResizable |
取得值,表示使用者是否能夠調整下拉式編輯器的大小。 (繼承來源 UITypeEditor) |
方法
EditValue(IServiceProvider, Object) |
使用由 GetEditStyle() 方法指示的編輯器樣式,來編輯指定物件的值。 (繼承來源 UITypeEditor) |
EditValue(ITypeDescriptorContext, IServiceProvider, Object) |
編輯關聯資料來源控制項之 ParameterCollection 物件的項目。 |
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
GetEditStyle() |
取得 EditValue(IServiceProvider, Object) 方法所使用的編輯器樣式。 (繼承來源 UITypeEditor) |
GetEditStyle(ITypeDescriptorContext) |
取得與這個編輯器相關聯的編輯樣式。 |
GetHashCode() |
做為預設雜湊函式。 (繼承來源 Object) |
GetPaintValueSupported() |
指出這個編輯器是否支援繪製物件值的表示。 (繼承來源 UITypeEditor) |
GetPaintValueSupported(ITypeDescriptorContext) |
指出指定的內容是否支援在指定的內容中繪製物件值的表示。 (繼承來源 UITypeEditor) |
GetType() |
取得目前執行個體的 Type。 (繼承來源 Object) |
MemberwiseClone() |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
PaintValue(Object, Graphics, Rectangle) |
將指定物件的表示值繪製到指定的畫布上。 (繼承來源 UITypeEditor) |
PaintValue(PaintValueEventArgs) |
使用指定的 PaintValueEventArgs 來繪製物件值的表示。 (繼承來源 UITypeEditor) |
ToString() |
傳回代表目前物件的字串。 (繼承來源 Object) |