DesignerDataSourceViewとは? わかりやすく解説

DesignerDataSourceView クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

デザインデータ ソース ビュー クラス基本クラスとして機能します

名前空間: System.Web.UI.Design
アセンブリ: System.Design (system.design.dll 内)
構文構文

Public MustInherit Class
 DesignerDataSourceView
Dim instance As DesignerDataSourceView
public abstract class DesignerDataSourceView
public ref class DesignerDataSourceView abstract
public abstract class DesignerDataSourceView
public abstract class DesignerDataSourceView
解説解説

継承時の注意 DesignerDataSourceView クラスから継承する場合は、GetDesignTimeData メソッドオーバーライドして、Schema プロパティ一致するサンプル データ作成するか、またはデータ ソースから実データ返すようにする必要があります

使用例使用例

1 つカスタム DesignerDataSourceView オブジェクト1 つカスタム IDataSourceViewSchema クラス、および 2 つカスタム IDataSourceFieldSchema クラス作成する方法次のコード例示します

このコード例は、DataSourceDesigner クラストピック取り上げているコード例一部です。

    ' A     design-time data source view
    Public Class CustomDesignDataSourceView
        Inherits DesignerDataSourceView

        Private _data As ArrayList = Nothing

        Public Sub New(ByVal
 owner As CustomDataSourceDesigner, ByVal
 viewName As String)
            MyBase.New(owner, viewName)
        End Sub

        ' Get data for design-time display
        Public Overrides Function
 GetDesignTimeData( _
            ByVal minimumRows As Integer,
 _
            ByRef isSampleData As Boolean)
 As IEnumerable

            If IsNothing(_data) Then
                ' Create a set of design-time fake data
                _data = New ArrayList()
                Dim i As Integer
                For i = 1 To minimumRows
                    _data.Add(New BookItem("ID_"
 & i.ToString(), _
                        "Design-Time Title 0" &
 i.ToString()))
                Next
            End If
            isSampleData = True
            Return CType(_data, IEnumerable)
        End Function

        Public Overrides ReadOnly
 Property Schema() As IDataSourceViewSchema
            Get
                Return New BookListViewSchema()
            End Get
        End Property

        ' Allow getting the record count
        Public Overrides ReadOnly
 Property CanRetrieveTotalRowCount() As Boolean
            Get
                Return True
            End Get
        End Property
        ' Do not allow deletions
        Public Overrides ReadOnly
 Property CanDelete() As Boolean
            Get
                Return False
            End Get
        End Property
        ' Do not allow insertions
        Public Overrides ReadOnly
 Property CanInsert() As Boolean
            Get
                Return False
            End Get
        End Property
        ' Do not allow updates
        Public Overrides ReadOnly
 Property CanUpdate() As Boolean
            Get
                Return False
            End Get
        End Property
        ' Do not allow paging
        Public Overrides ReadOnly
 Property CanPage() As Boolean
            Get
                Return False
            End Get
        End Property
        ' Do not allow sorting
        Public Overrides ReadOnly
 Property CanSort() As Boolean
            Get
                Return False
            End Get
        End Property
    End Class
<br /><span space="preserve">...</span><br
 />    ' A custom View Schema class
    Public Class BookListViewSchema
        Implements IDataSourceViewSchema

        Public Sub New()
        End Sub

        ' The name of this View Schema
        Public ReadOnly Property
 Name() As String Implements
 IDataSourceViewSchema.Name
            Get
                Return "BookList"
            End Get
        End Property

        ' Build a Field Schema array
        Public Function GetFields() As
 IDataSourceFieldSchema() Implements IDataSourceViewSchema.GetFields
            Dim fields(1) As IDataSourceFieldSchema
            fields(0) = New CustomIDFieldSchema()
            fields(1) = New CustomTitleFieldSchema()
            Return fields
        End Function
        ' There are no child views, so return Nothing
        Public Function GetChildren() As
 IDataSourceViewSchema() Implements IDataSourceViewSchema.GetChildren
            Return Nothing
        End Function
    End Class

    ' A custom Field Schema class for ID
    Public Class CustomIDFieldSchema
        Implements IDataSourceFieldSchema

        Public Sub New()
        End Sub

        ' Name is ID
        Public ReadOnly Property
 Name() As String Implements
 IDataSourceFieldSchema.Name
            Get
                Return "ID"
            End Get
        End Property
        ' Data type is string
        Public ReadOnly Property
 DataType() As Type Implements IDataSourceFieldSchema.DataType
            Get
                Return GetType(String)
            End Get
        End Property
        ' This is not an Identity field
        Public ReadOnly Property
 Identity() As Boolean Implements
 IDataSourceFieldSchema.Identity
            Get
                Return False
            End Get
        End Property
        ' This field is read only
        Public ReadOnly Property
 IsReadOnly() As Boolean Implements
 IDataSourceFieldSchema.IsReadOnly
            Get
                Return True
            End Get
        End Property
        ' This field is unique
        Public ReadOnly Property
 IsUnique() As Boolean Implements
 IDataSourceFieldSchema.IsUnique
            Get
                Return True
            End Get
        End Property
        ' This field can't be longer than 20
        Public ReadOnly Property
 Length() As Integer Implements
 IDataSourceFieldSchema.Length
            Get
                Return 20
            End Get
        End Property
        ' This field can't be null
        Public ReadOnly Property
 Nullable() As Boolean Implements
 IDataSourceFieldSchema.Nullable
            Get
                Return False
            End Get
        End Property
        ' This is a Primary Key
        Public ReadOnly Property
 PrimaryKey() As Boolean Implements
 IDataSourceFieldSchema.PrimaryKey
            Get
                Return True
            End Get
        End Property

        ' These properties do not apply
        Public ReadOnly Property
 Precision() As Integer Implements
 IDataSourceFieldSchema.Precision
            Get
                Return -1
            End Get
        End Property
        Public ReadOnly Property
 Scale() As Integer Implements
 IDataSourceFieldSchema.Scale
            Get
                Return -1
            End Get
        End Property
    End Class

    ' A custom Field Schema class for Title
    Public Class CustomTitleFieldSchema
        Implements IDataSourceFieldSchema

        Public Sub New()
        End Sub

        ' Name is Title
        Public ReadOnly Property
 Name() As String Implements
 IDataSourceFieldSchema.Name
            Get
                Return "Title"
            End Get
        End Property
        ' Type is string
        Public ReadOnly Property
 DataType() As Type Implements IDataSourceFieldSchema.DataType
            Get
                Return GetType(String)
            End Get
        End Property
        ' This is not an Identity field
        Public ReadOnly Property
 Identity() As Boolean Implements
 IDataSourceFieldSchema.Identity
            Get
                Return False
            End Get
        End Property
        ' This field is not read only
        Public ReadOnly Property
 IsReadOnly() As Boolean Implements
 IDataSourceFieldSchema.IsReadOnly
            Get
                Return False
            End Get
        End Property
        ' This field is not unique
        Public ReadOnly Property
 IsUnique() As Boolean Implements
 IDataSourceFieldSchema.IsUnique
            Get
                Return False
            End Get
        End Property
        ' This field can't be longer than 100
        Public ReadOnly Property
 Length() As Integer Implements
 IDataSourceFieldSchema.Length
            Get
                Return 100
            End Get
        End Property
        ' This field can't be null
        Public ReadOnly Property
 Nullable() As Boolean Implements
 IDataSourceFieldSchema.Nullable
            Get
                Return False
            End Get
        End Property
        ' This is not the Primary Key
        Public ReadOnly Property
 PrimaryKey() As Boolean Implements
 IDataSourceFieldSchema.PrimaryKey
            Get
                Return False
            End Get
        End Property

        ' These properties do not apply
        Public ReadOnly Property
 Precision() As Integer Implements
 IDataSourceFieldSchema.Precision
            Get
                Return -1
            End Get
        End Property
        Public ReadOnly Property
 Scale() As Integer Implements
 IDataSourceFieldSchema.Scale
            Get
                Return -1
            End Get
        End Property
    End Class
    // A design-time data source view
    public class CustomDesignDataSourceView
 : DesignerDataSourceView
    {
        private ArrayList _data = null;

        public CustomDesignDataSourceView(
            CustomDataSourceDesigner owner, string viewName)
            : base(owner, viewName)
        {}

        // Get data for design-time display
        public override IEnumerable GetDesignTimeData(
            int minimumRows, out bool isSampleData)
        {
            if (_data == null)
            {
                // Create a set of design-time fake data
                _data = new ArrayList();
                for (int i = 1; i <= minimumRows;
 i++)
                {
                    _data.Add(new BookItem("ID_" + i.ToString()
,
                        "Design-Time Title 0" + i.ToString()));
                }
            }
            isSampleData = true;
            return _data as IEnumerable;
        }

        public override IDataSourceViewSchema Schema
        {
            get { return new
 BookListViewSchema(); }
        }

        // Allow getting the record count
        public override bool CanRetrieveTotalRowCount
        {
            get { return true;
 }
        }
        // Do not allow deletions
        public override bool CanDelete
        {
            get { return false;
 }
        }
        // Do not allow insertions
        public override bool CanInsert
        {
            get { return false;
 }
        }
        // Do not allow updates
        public override bool CanUpdate
        {
            get { return false;
 }
        }
        // Do not allow paging
        public override bool CanPage
        {
            get { return false;
 }
        }
        // Do not allow sorting
        public override bool CanSort
        {
            get { return false;
 }
        }
    }
<br /><span space="preserve">...</span><br /> 
   // A custom View Schema class
    public class BookListViewSchema : IDataSourceViewSchema
    {
        public BookListViewSchema()
        { }

        // The name of this View Schema
        public string Name
        {
            get { return "BookList";
 }
        }

        // Build a Field Schema array
        public IDataSourceFieldSchema[] GetFields()
        {
            IDataSourceFieldSchema[] fields = new IDataSourceFieldSchema[2];
            fields[0] = new CustomIDFieldSchema();
            fields[1] = new CustomTitleFieldSchema();
            return fields;
        }
        // There are no child views, so return null
        public IDataSourceViewSchema[] GetChildren()
        {
            return null;
        }
    }

    // A custom Field Schema class for ID
    public class CustomIDFieldSchema : IDataSourceFieldSchema
    {
        public CustomIDFieldSchema()
        { }

        // Name is ID
        public string Name
        {
            get { return "ID"; }
        }
        // Data type is string
        public Type DataType
        {
            get { return typeof(string);
 }
        }
        // This is not an Identity field
        public bool Identity
        {
            get { return false;
 }
        }
        // This field is read only
        public bool IsReadOnly
        {
            get { return true;
 }
        }
        // This field is unique
        public bool IsUnique
        {
            get { return true;
 }
        }
        // This field can't be longer than 20
        public int Length
        {
            get { return 20; }
        }
        // This field can't be null
        public bool Nullable
        {
            get { return false;
 }
        }
        // This is a Primary Key
        public bool PrimaryKey
        {
            get { return true;
 }
        }

        // These properties do not apply
        public int Precision
        {
            get { return -1; }
        }
        public int Scale
        {
            get { return -1; }
        }
    }
    
    // A custom Field Schema class for Title
    public class CustomTitleFieldSchema : IDataSourceFieldSchema
    {
        public CustomTitleFieldSchema()
        { }

        // Name is Title
        public string Name
        {
            get { return "Title";
 }
        }
        // Type is string
        public Type DataType
        {
            get { return typeof(string);
 }
        }
        // This is not an Identity field
        public bool Identity
        {
            get { return false;
 }
        }
        // This field is not read only
        public bool IsReadOnly
        {
            get { return false;
 }
        }
        // This field is not unique
        public bool IsUnique
        {
            get { return false;
 }
        }
        // This field can't be longer than 100
        public int Length
        {
            get { return 100; }
        }
        // This field can't be null
        public bool Nullable
        {
            get { return false;
 }
        }
        // This is not the Primary Key
        public bool PrimaryKey
        {
            get { return false;
 }
        }

        // These properties do not apply
        public int Precision
        {
            get { return -1; }
        }
        public int Scale
        {
            get { return -1; }
        }
    }
継承階層継承階層
System.Object
  System.Web.UI.Design.DesignerDataSourceView
     System.Web.UI.Design.WebControls.ObjectDesignerDataSourceView
     System.Web.UI.Design.WebControls.SiteMapDesignerDataSourceView
     System.Web.UI.Design.WebControls.SqlDesignerDataSourceView
     System.Web.UI.Design.WebControls.XmlDesignerDataSourceView
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

DesignerDataSourceView コンストラクタ

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定されデータ ソース デザイナビュー名を使用して、DesignerDataSourceView クラス新しインスタンス作成します

名前空間: System.Web.UI.Design
アセンブリ: System.Design (system.design.dll 内)
構文構文

Protected Sub New ( _
    owner As IDataSourceDesigner, _
    viewName As String _
)
Dim owner As IDataSourceDesigner
Dim viewName As String

Dim instance As New DesignerDataSourceView(owner,
 viewName)
protected DesignerDataSourceView (
    IDataSourceDesigner owner,
    string viewName
)
protected:
DesignerDataSourceView (
    IDataSourceDesigner^ owner, 
    String^ viewName
)
protected DesignerDataSourceView (
    IDataSourceDesigner owner, 
    String viewName
)
protected function DesignerDataSourceView (
    owner : IDataSourceDesigner, 
    viewName : String
)

パラメータ

owner

データ ソース デザイナ

viewName

データ ソースビューの名前。

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

DesignerDataSourceView プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ CanDelete 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteDelete メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ CanInsert 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteInsert メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ CanPage 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで、ExecuteSelect メソッド取得したデータ使用するページングサポートされているかどうかを示す値を取得します
パブリック プロパティ CanRetrieveTotalRowCount 現在の DataSourceControl オブジェクト関連付けられた DataSourceView オブジェクトで、データ代わりにデータ行の総数取得する操作サポートされているかどうかを示す値を取得します
パブリック プロパティ CanSort 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで、基になるデータ ソース対す並べ替え済みビューサポートされているかどうかを示す値を取得します
パブリック プロパティ CanUpdate 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteUpdate メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ DataSourceDesigner この DesignerDataSourceView コントロール作成したデザイナへの参照取得します
パブリック プロパティ Name DesignerDataSourceView クラスインスタンス作成時に指定したビューの名前を取得します
パブリック プロパティ Schema このビュー オブジェクト表されるデータ ソース ビュー記述するスキーマ取得します
参照参照

関連項目

DesignerDataSourceView クラス
System.Web.UI.Design 名前空間

その他の技術情報

ASP.NET コントロール デザイナ概要
デザインサポート拡張
方法 : デザイン モードコントロール外観動作拡張する

DesignerDataSourceView メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DesignerDataSourceView クラス
System.Web.UI.Design 名前空間

その他の技術情報

ASP.NET コントロール デザイナ概要
デザインサポート拡張
方法 : デザイン モードコントロール外観動作拡張する

DesignerDataSourceView メンバ

デザインデータ ソース ビュー クラス基本クラスとして機能します

DesignerDataSourceView データ型公開されるメンバを以下の表に示します


プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド DesignerDataSourceView 指定されデータ ソース デザイナビュー名を使用してDesignerDataSourceView クラス新しインスタンス作成します
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ CanDelete 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteDelete メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ CanInsert 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteInsert メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ CanPage 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで、ExecuteSelect メソッド取得したデータ使用するページングサポートされているかどうかを示す値を取得します
パブリック プロパティ CanRetrieveTotalRowCount 現在の DataSourceControl オブジェクト関連付けられた DataSourceView オブジェクトで、データ代わりにデータ行の総数取得する操作サポートされているかどうかを示す値を取得します
パブリック プロパティ CanSort 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで、基になるデータ ソース対す並べ替え済みビューサポートされているかどうかを示す値を取得します
パブリック プロパティ CanUpdate 現在の DataSourceControl オブジェクト関連付けられている DataSourceView オブジェクトで ExecuteUpdate メソッドサポートされているかどうかを示す値を取得します
パブリック プロパティ DataSourceDesigner この DesignerDataSourceView コントロール作成したデザイナへの参照取得します
パブリック プロパティ Name DesignerDataSourceView クラスインスタンス作成時に指定したビューの名前を取得します
パブリック プロパティ Schema このビュー オブジェクト表されるデータ ソース ビュー記述するスキーマ取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DesignerDataSourceView クラス
System.Web.UI.Design 名前空間

その他の技術情報

ASP.NET コントロール デザイナ概要
デザインサポート拡張
方法 : デザイン モードコントロール外観動作拡張する


このページでは「.NET Framework クラス ライブラリ リファレンス」からDesignerDataSourceViewを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDesignerDataSourceViewを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDesignerDataSourceView を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DesignerDataSourceView」の関連用語

DesignerDataSourceViewのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DesignerDataSourceViewのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS