次の方法で共有


ListControl.DisplayMember プロパティ

内容を表示するデータ ソースのプロパティを指定する文字列を取得または設定します。

Public Property DisplayMember As String
[C#]
public string DisplayMember {get; set;}
[C++]
public: __property String* get_DisplayMember();public: __property void set_DisplayMember(String*);
[JScript]
public function get DisplayMember() : String;public function set DisplayMember(String);

プロパティ値

DataSource プロパティで指定されたオブジェクトのプロパティの名前を指定する String 。既定値は空の文字列 ("") です。

解説

ListControl から継承するコントロールは、さまざまな種類のオブジェクトを表示できます。指定したプロパティがオブジェクトに存在しないか、 DisplayMember の値が空の文字列 ("") である場合は、オブジェクトの ToString メソッドの結果が代わりに表示されます。

新しい表示メンバを設定できない場合、前の表示メンバの設定が維持されます。

使用例

[Visual Basic, C#, C++] ListBox クラスによって実装された ListControl クラスの DataSourceDisplayMemberValueMemberSelectedValue の各メンバの使用方法を示す、アプリケーション全体の例を次に示します。この例では、 ArrayList とリスト ボックスを読み込みます。ユーザーがリスト ボックスの項目を選択すると、選択した値を使用して、選択した項目に関連付けられているデータが返されます。

 
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Collections

Public Class USState

    Private myShortName As String
    Private myLongName As String

    Public Sub New(ByVal strlongName As String, ByVal strShortName As String)
        MyBase.New()
        Me.myShortName = strShortName
        Me.myLongName = strLongName
    End Sub

    Public ReadOnly Property ShortName() As String
        Get
            Return myShortName
        End Get
    End Property

    Public ReadOnly Property LongName() As String
        Get
            Return myLongName
        End Get
    End Property

    Public Overrides Function ToString() As String
        Return Me.ShortName & " - " & Me.LongName
    End Function
End Class


Public Class ListBoxSample3
    Inherits Form
    Friend WithEvents ListBox1 As ListBox = New ListBox()
    Dim textBox1 As TextBox = New TextBox()

    <System.STAThreadAttribute()> _
    Public Shared Sub Main()
        System.Windows.Forms.Application.Run(New ListBoxSample3())
    End Sub

    Public Sub New()
        Me.AutoScaleBaseSize = New Size(5, 13)
        Me.ClientSize = New Size(292, 181)
        Me.Text = "ListBox Sample3"

        ListBox1.Location = New Point(24, 16)
        ListBox1.Name = "ListBox1"
        ListBox1.Size = New Size(232, 130)


        textBox1.Location = New Point(24, 160)
        textBox1.Name = "textBox1"
        textBox1.Size = New Size(40, 24)
        Me.Controls.AddRange(New Control() {ListBox1, textBox1})

        ' Populates the list box using DataSource. 
        ' DisplayMember is used to display just the long name of each state.
        Dim USStates As New ArrayList()
        USStates.Add(New USState("Washington", "WA"))
        USStates.Add(New USState("West Virginia", "WV"))
        USStates.Add(New USState("Wisconsin", "WI"))
        USStates.Add(New USState("Wyoming", "WY"))

        ListBox1.DataSource = USStates
        ListBox1.DisplayMember = "LongName"
        ListBox1.ValueMember = "ShortName"

    End Sub

    Private Sub InitializeComponent()

    End Sub
    
    Private Sub ListBox1_SelectedValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedValueChanged
        If ListBox1.SelectedIndex <> -1 Then
            textBox1.Text = ListBox1.SelectedValue
        End If
    End Sub
End Class

[C#] 
using System;
using System.Windows.Forms ;
using System.Drawing ;
using System.Collections ;


namespace MyListControlSample
{

    public class USState
    {
        private string myShortName ;
        private string myLongName ;
    
        public  USState(string strLongName, string strShortName)
        {

            this.myShortName = strShortName;
            this.myLongName = strLongName;
        }

        public string ShortName
        {
            get
            {
                return myShortName;
            }
        }

        public string LongName
        {
        
            get
            {
                return myLongName ;
            }
        }

        public override string ToString()
        {
            return this.ShortName + " - " + this.LongName;
        }
    }

    public class ListBoxSample3:Form
    {
        private ListBox ListBox1 = new ListBox();
        private TextBox textBox1 = new TextBox() ;
        
        [STAThread]
        static void Main() 
        {
            Application.Run(new ListBoxSample3()) ;
        }

        public ListBoxSample3()
        {
        
            this.AutoScaleBaseSize = new Size(5, 13) ;
            this.ClientSize = new Size(292, 181) ;
            this.Text = "ListBox Sample3" ;

            ListBox1.Location = new Point(24, 16) ;
            ListBox1.Name = "ListBox1" ;
            ListBox1.Size = new Size(232, 130) ;
            


            textBox1.Location = new Point(24, 160) ;
            textBox1.Name = "textBox1" ;
            textBox1.Size = new Size(240, 24) ;
            this.Controls.AddRange(new Control[] {ListBox1, textBox1}) ;

            // Populates the list box using DataSource. 
            // DisplayMember is used to display just the long name of each state.
            ArrayList USStates = new ArrayList()    ;
            USStates.Add(new USState("Alabama", "AL"));
            USStates.Add(new USState("Washington", "WA"))  ; 
            USStates.Add(new USState("West Virginia", "WV"));
            USStates.Add(new USState("Wisconsin", "WI")) ;
            USStates.Add(new USState("Wyoming", "WY"));

            ListBox1.SelectedValueChanged += new EventHandler(ListBox1_SelectedValueChanged);
            ListBox1.DataSource = USStates ;
            ListBox1.DisplayMember = "LongName"      ;
            ListBox1.ValueMember = "ShortName" ;

        }
        private void InitializeComponent()
        {
        
        }

        private void ListBox1_SelectedValueChanged(object sender, EventArgs e)
        {
            if (ListBox1.SelectedIndex != -1)
                textBox1.Text = ListBox1.SelectedValue.ToString();
        }
    }
}

[C++] 
#using <mscorlib.dll>
#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>
using namespace System;
using namespace System::Windows::Forms;
using namespace System::Drawing;
using namespace System::Collections;


public __gc class USState
{
private:
    String* myShortName;
    String* myLongName;

public:
    USState(String* strLongName, String* strShortName)
    {

        this->myShortName = strShortName;
        this->myLongName = strLongName;
    }

    __property String* get_ShortName()
    {
        return myShortName;
    }

    __property String* get_LongName()
    {
        return myLongName;
    }

    String* ToString()
    {
        return String::Concat( this->ShortName, S" - ", this->LongName );
    }
};

public __gc class ListBoxSample3:public Form
{
private:
    ListBox* ListBox1;
    TextBox* textBox1;

public:
    ListBoxSample3()
    {
        ListBox1 = new ListBox();
        textBox1 = new TextBox();
        this->AutoScaleBaseSize = System::Drawing::Size(5, 13);
        this->ClientSize = System::Drawing::Size(292, 181);
        this->Text = S"ListBox Sample3";

        ListBox1->Location = Point(24, 16);
        ListBox1->Name = S"ListBox1";
        ListBox1->Size = System::Drawing::Size(232, 130);

        textBox1->Location = Point(24, 160);
        textBox1->Name = S"textBox1";
        textBox1->Size = System::Drawing::Size(240, 24);

        Control* temp2 [] = {ListBox1, textBox1};
        this->Controls->AddRange(temp2);

        // Populates the list box using DataSource. 
        // DisplayMember is used to display just the long name of each state.
        ArrayList* USStates = new ArrayList();
        USStates->Add(new USState(S"Alabama", S"AL"));
        USStates->Add(new USState(S"Washington", S"WA")); 
        USStates->Add(new USState(S"West Virginia", S"WV"));
        USStates->Add(new USState(S"Wisconsin", S"WI"));
        USStates->Add(new USState(S"Wyoming", S"WY"));

        ListBox1->SelectedValueChanged += new EventHandler(this, &ListBoxSample3::ListBox1_SelectedValueChanged);
        ListBox1->DataSource = USStates;
        ListBox1->DisplayMember = S"LongName";
        ListBox1->ValueMember = S"ShortName";

    }

    void InitializeComponent()
    {

    }

private:
    void ListBox1_SelectedValueChanged(Object* /*sender*/, EventArgs* /*e*/)
    {
        if (ListBox1->SelectedIndex != -1)
            textBox1->Text = ListBox1->SelectedValue->ToString();
    }
};

[STAThread]
int main() 
{
    Application::Run(new ListBoxSample3());
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

ListControl クラス | ListControl メンバ | System.Windows.Forms 名前空間