次の方法で共有


DefaultPropertyAttribute クラス

コンポーネントの既定のプロパティを指定します。

名前空間: System.ComponentModel
アセンブリ: System (system.dll 内)

構文

'宣言
<AttributeUsageAttribute(AttributeTargets.Class)> _
Public NotInheritable Class DefaultPropertyAttribute
    Inherits Attribute
'使用
Dim instance As DefaultPropertyAttribute
[AttributeUsageAttribute(AttributeTargets.Class)] 
public sealed class DefaultPropertyAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class)] 
public ref class DefaultPropertyAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class) */ 
public final class DefaultPropertyAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class) 
public final class DefaultPropertyAttribute extends Attribute

解説

既定のプロパティの名前を取得するには、Name プロパティを使用します。

詳細については、属性の概要属性を使用したメタデータの拡張 の各トピックを参照してください。

トピック 場所
チュートリアル : カスタム サーバー コントロールの開発と使用 ASP.NET コントロールの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 ASP.NET コントロールの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 ASP.NET コントロールの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 ASP.NET コントロールの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 ASP.NET コントロールの作成
チュートリアル : カスタム サーバー コントロールの開発と使用 Visual Web Developer でのアプリケーションの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 1.1 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
ASP.NET 2.0 用カスタム データ バインド Web サーバー コントロールの開発 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 2.0 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成
チュートリアル : ASP.NET 1.1 用カスタム データ バインド ASP.NET Web コントロールの作成 Visual Studio ASP .NET での Web アプリケーションの作成

使用例

MyControl という名前のコントロールを定義する例を次に示します。このクラスは、既定のプロパティとして MyProperty を指定する DefaultPropertyAttribute を使用してマークされます。

<DefaultProperty("MyProperty")> _
Public Class MyControl
    Inherits Control

    Public Property MyProperty() As Integer
        Get
            ' Insert code here.
            Return 0
        End Get
        Set
            ' Insert code here.
        End Set 
    End Property
    ' Insert any additional code.
End Class 'MyControl
[DefaultProperty("MyProperty")]
 public class MyControl : Control {
 
    public int MyProperty {
       get {
          // Insert code here.
          return 0;
       }
       set {
          // Insert code here.
       }
    }
 
    // Insert any additional code.
 
 }
[DefaultProperty("MyProperty")]
ref class MyControl: public Control
{
public:

   property int MyProperty 
   {
      int get()
      {
         // Insert code here.
         return 0;
      }

      void set( int value )
      {
         // Insert code here.
      }
   }
   // Insert any additional code.
};
/** @attribute DefaultProperty("MyProperty")
 */
public static class MyControl extends Control
{
    /** @property 
     */
    public int get_MyProperty()
    {
        // Insert code here.
        return 0;
    } //get_MyProperty

    /** @property 
     */
    public void set_MyProperty(int value)
    {
        // Insert code here.
    } //set_MyProperty

    // Insert any additional code.

} //MyControl

MyControl のインスタンスを作成する例を次に示します。そのクラスの属性を取得し、DefaultPropertyAttribute を抽出してから、既定のプロパティの名前を出力します。

Public Shared Function Main() As Integer
    ' Creates a new control.
    Dim myNewControl As New MyControl()
    
    ' Gets the attributes for the collection.
    Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(myNewControl)
    
    ' Prints the name of the default property by retrieving the
    ' DefaultPropertyAttribute from the AttributeCollection. 
    Dim myAttribute As DefaultPropertyAttribute = _
        CType(attributes(GetType(DefaultPropertyAttribute)), DefaultPropertyAttribute)
    Console.WriteLine(("The default property is: " + myAttribute.Name))
    Return 0
End Function 'Main
public static int Main() {
    // Creates a new control.
    MyControl myNewControl = new MyControl();
 
    // Gets the attributes for the collection.
    AttributeCollection attributes = TypeDescriptor.GetAttributes(myNewControl);
 
    /* Prints the name of the default property by retrieving the 
     * DefaultPropertyAttribute from the AttributeCollection. */
    DefaultPropertyAttribute myAttribute = 
       (DefaultPropertyAttribute)attributes[typeof(DefaultPropertyAttribute)];
    Console.WriteLine("The default property is: " + myAttribute.Name);
  
    return 0;
 }
int main()
{
   // Creates a new control.
   Form1::MyControl^ myNewControl = gcnew Form1::MyControl;

   // Gets the attributes for the collection.
   AttributeCollection^ attributes = TypeDescriptor::GetAttributes( myNewControl );

   /* Prints the name of the default property by retrieving the 
       * DefaultPropertyAttribute from the AttributeCollection. */
   DefaultPropertyAttribute^ myAttribute = dynamic_cast<DefaultPropertyAttribute^>(attributes[ DefaultPropertyAttribute::typeid ]);
   Console::WriteLine( "The default property is: {0}", myAttribute->Name );
   return 0;
}
public static void main(String[] args)
{
    // Creates a new control.        
    MyControl myNewControl = new MyControl();

    // Gets the attributes for the collection.
    AttributeCollection attributes = 
        TypeDescriptor.GetAttributes(myNewControl);

    /* Prints the name of the default property by retrieving the 
       DefaultPropertyAttribute from the AttributeCollection. 
     */
    DefaultPropertyAttribute myAttribute = 
        (DefaultPropertyAttribute)(attributes.get_Item(
        DefaultPropertyAttribute.class.ToType()));

    Console.WriteLine("The default property is: " 
        + myAttribute.get_Name());
    
} //main

継承階層

System.Object
   System.Attribute
    System.ComponentModel.DefaultPropertyAttribute

スレッド セーフ

この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 2.0、1.1、1.0

参照

関連項目

DefaultPropertyAttribute メンバ
System.ComponentModel 名前空間
Attribute