英語で読む

次の方法で共有


View 列挙型

定義

リスト項目を ListView コントロールに表示する方法を指定します。

C#
public enum View
継承

フィールド

Details 1

各項目は各行に表示され、各項目に関する詳しい情報が各列に配置されます。 左端の列には小さいアイコンとラベルが示されます。次の列にはアプリケーションで指定されたサブ項目が示されます。 列には、列のキャプションを示すヘッダーが表示されます。 ユーザーは実行時に各列のサイズを変更できます。

LargeIcon 0

各項目は、ラベルが下に付いているフルサイズのアイコンとして表示されます。

List 3

各項目は、ラベルが右側に付いている小さいアイコンとして表示されます。 項目は、列ヘッダーのない列に配置されます。

SmallIcon 2

各項目は、ラベルが右側に付いている小さいアイコンとして表示されます。

Tile 4

各項目はフルサイズのアイコンとして表示され、右側にラベルとサブ項目の情報が表示されます。 表示するサブ項目の情報は、アプリケーションによって指定されます。 この情報は Windows XP および Windows Server 2003 ファミリでのみ表示されます。 古いオペレーティング システムではこの値が無視され、ListView ビューには LargeIcon コントロールが表示されます。

次のコード例では、プロパティを ListView.View いずれかの列挙値に設定する方法を View 示します。 この例を実行するには、次のコードをフォームに貼り付け、フォームの InitializeListView コンストラクターまたは Load メソッドでメソッドを呼び出します。

C#

// Declare the Listview object.
internal System.Windows.Forms.ListView myListView;

// Initialize the ListView object with subitems of a different
// style than the default styles for the ListView.
private void InitializeListView()
{

    // Set the Location, View and Width properties for the 
    // ListView object. 
    myListView = new ListView();
    myListView.Location = new System.Drawing.Point(20, 20);
    myListView.Width = 250;

    // The View property must be set to Details for the 
    // subitems to be visible.
    myListView.View = View.Details;
    
    // Each SubItem object requires a column, so add three columns.
    this.myListView.Columns.Add("Key", 50, HorizontalAlignment.Left);
    this.myListView.Columns.Add("A", 100, HorizontalAlignment.Left);
    this.myListView.Columns.Add("B", 100, HorizontalAlignment.Left);

    // Add a ListItem object to the ListView.
    ListViewItem entryListItem = myListView.Items.Add("Items");

    // Set UseItemStyleForSubItems property to false to change 
    // look of subitems.
    entryListItem.UseItemStyleForSubItems = false;

    // Add the expense subitem.
    ListViewItem.ListViewSubItem expenseItem = 
        entryListItem.SubItems.Add("Expense");

    // Change the expenseItem object's color and font.
    expenseItem.ForeColor = System.Drawing.Color.Red;
    expenseItem.Font = new System.Drawing.Font(
        "Arial", 10, System.Drawing.FontStyle.Italic);

    // Add a subitem called revenueItem 
    ListViewItem.ListViewSubItem revenueItem = 
        entryListItem.SubItems.Add("Revenue");

    // Change the revenueItem object's color and font.
    revenueItem.ForeColor = System.Drawing.Color.Blue;
    revenueItem.Font = new System.Drawing.Font(
        "Times New Roman", 10, System.Drawing.FontStyle.Bold);

    // Add the ListView to the form.
    this.Controls.Add(this.myListView);
}

注釈

この列挙体のメンバーを使用して、コントロールのプロパティの値をViewListView設定します。

適用対象

製品 バージョン
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

こちらもご覧ください