ListView 類別

定義

代表 Windows 清單檢視控制項,顯示出使用四種不同檢視的其中一個就可以顯示出來的項目集合。

public ref class ListView : System::Windows::Forms::Control
public class ListView : System.Windows.Forms.Control
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.Ask)]
public class ListView : System.Windows.Forms.Control
[System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.Ask)]
public class ListView : System.Windows.Forms.Control
type ListView = class
    inherit Control
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.Ask)>]
type ListView = class
    inherit Control
[<System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.Ask)>]
type ListView = class
    inherit Control
Public Class ListView
Inherits Control
繼承
屬性

範例

下列程式碼範例會建立控制項,其中指定三 ListViewItem 個物件,以及針對每個專案指定的三 ListViewItem.ListViewSubItemListView 物件。 此範例也會建立 ColumnHeader 物件,以顯示詳細資料檢視中的子專案。 程式碼範例中也會建立兩 ImageList 個 物件,以提供 物件的影像 ListViewItem 。 這些 ImageList 物件會新增至 LargeImageListSmallImageList 屬性。 此範例會在建立 ListView 控制項時使用下列屬性:

此範例會要求您將程式碼新增至 Form ,並從表單上的建構函式或其他方法呼叫在範例中建立的方法。 此範例也需要名為 MySmallImage1MySmallImage2MyLargeImage1 和 的 MyLargeImage2 映射位於磁片磁碟機 C 的根目錄中。

private:
   void CreateMyListView()
   {
      // Create a new ListView control.
      ListView^ listView1 = gcnew ListView;
      listView1->Bounds = Rectangle(Point(10,10),System::Drawing::Size( 300, 200 ));

      // Set the view to show details.
      listView1->View = View::Details;

      // Allow the user to edit item text.
      listView1->LabelEdit = true;

      // Allow the user to rearrange columns.
      listView1->AllowColumnReorder = true;

      // Display check boxes.
      listView1->CheckBoxes = true;

      // Select the item and subitems when selection is made.
      listView1->FullRowSelect = true;

      // Display grid lines.
      listView1->GridLines = true;

      // Sort the items in the list in ascending order.
      listView1->Sorting = SortOrder::Ascending;

      // Create three items and three sets of subitems for each item.
      ListViewItem^ item1 = gcnew ListViewItem( "item1",0 );

      // Place a check mark next to the item.
      item1->Checked = true;
      item1->SubItems->Add( "1" );
      item1->SubItems->Add( "2" );
      item1->SubItems->Add( "3" );
      ListViewItem^ item2 = gcnew ListViewItem( "item2",1 );
      item2->SubItems->Add( "4" );
      item2->SubItems->Add( "5" );
      item2->SubItems->Add( "6" );
      ListViewItem^ item3 = gcnew ListViewItem( "item3",0 );

      // Place a check mark next to the item.
      item3->Checked = true;
      item3->SubItems->Add( "7" );
      item3->SubItems->Add( "8" );
      item3->SubItems->Add( "9" );

      // Create columns for the items and subitems.
      // Width of -2 indicates auto-size.
      listView1->Columns->Add( "Item Column", -2, HorizontalAlignment::Left );
      listView1->Columns->Add( "Column 2", -2, HorizontalAlignment::Left );
      listView1->Columns->Add( "Column 3", -2, HorizontalAlignment::Left );
      listView1->Columns->Add( "Column 4", -2, HorizontalAlignment::Center );

      //Add the items to the ListView.
      array<ListViewItem^>^temp1 = {item1,item2,item3};
      listView1->Items->AddRange( temp1 );

      // Create two ImageList objects.
      ImageList^ imageListSmall = gcnew ImageList;
      ImageList^ imageListLarge = gcnew ImageList;

      // Initialize the ImageList objects with bitmaps.
      imageListSmall->Images->Add( Bitmap::FromFile( "C:\\MySmallImage1.bmp" ) );
      imageListSmall->Images->Add( Bitmap::FromFile( "C:\\MySmallImage2.bmp" ) );
      imageListLarge->Images->Add( Bitmap::FromFile( "C:\\MyLargeImage1.bmp" ) );
      imageListLarge->Images->Add( Bitmap::FromFile( "C:\\MyLargeImage2.bmp" ) );

      //Assign the ImageList objects to the ListView.
      listView1->LargeImageList = imageListLarge;
      listView1->SmallImageList = imageListSmall;
      
      // Add the ListView to the control collection.
      this->Controls->Add( listView1 );
   }
private void CreateMyListView()
{
    // Create a new ListView control.
    ListView listView1 = new ListView();
    listView1.Bounds = new Rectangle(new Point(10,10), new Size(300,200));

    // Set the view to show details.
    listView1.View = View.Details;
    // Allow the user to edit item text.
    listView1.LabelEdit = true;
    // Allow the user to rearrange columns.
    listView1.AllowColumnReorder = true;
    // Display check boxes.
    listView1.CheckBoxes = true;
    // Select the item and subitems when selection is made.
    listView1.FullRowSelect = true;
    // Display grid lines.
    listView1.GridLines = true;
    // Sort the items in the list in ascending order.
    listView1.Sorting = SortOrder.Ascending;
                
    // Create three items and three sets of subitems for each item.
    ListViewItem item1 = new ListViewItem("item1",0);
    // Place a check mark next to the item.
    item1.Checked = true;
    item1.SubItems.Add("1");
    item1.SubItems.Add("2");
    item1.SubItems.Add("3");
    ListViewItem item2 = new ListViewItem("item2",1);
    item2.SubItems.Add("4");
    item2.SubItems.Add("5");
    item2.SubItems.Add("6");
    ListViewItem item3 = new ListViewItem("item3",0);
    // Place a check mark next to the item.
    item3.Checked = true;
    item3.SubItems.Add("7");
    item3.SubItems.Add("8");
    item3.SubItems.Add("9");

    // Create columns for the items and subitems.
    // Width of -2 indicates auto-size.
    listView1.Columns.Add("Item Column", -2, HorizontalAlignment.Left);
    listView1.Columns.Add("Column 2", -2, HorizontalAlignment.Left);
    listView1.Columns.Add("Column 3", -2, HorizontalAlignment.Left);
    listView1.Columns.Add("Column 4", -2, HorizontalAlignment.Center);

    //Add the items to the ListView.
    listView1.Items.AddRange(new ListViewItem[]{item1,item2,item3});

    // Create two ImageList objects.
    ImageList imageListSmall = new ImageList();
    ImageList imageListLarge = new ImageList();

    // Initialize the ImageList objects with bitmaps.
    imageListSmall.Images.Add(Bitmap.FromFile("C:\\MySmallImage1.bmp"));
    imageListSmall.Images.Add(Bitmap.FromFile("C:\\MySmallImage2.bmp"));
    imageListLarge.Images.Add(Bitmap.FromFile("C:\\MyLargeImage1.bmp"));
    imageListLarge.Images.Add(Bitmap.FromFile("C:\\MyLargeImage2.bmp"));

    //Assign the ImageList objects to the ListView.
    listView1.LargeImageList = imageListLarge;
    listView1.SmallImageList = imageListSmall;

    // Add the ListView to the control collection.
    this.Controls.Add(listView1);
}
Private Sub CreateMyListView()
    ' Create a new ListView control.
    Dim listView1 As New ListView()
    listView1.Bounds = New Rectangle(New Point(10, 10), New Size(300, 200))

    ' Set the view to show details.
    listView1.View = View.Details
    ' Allow the user to edit item text.
    listView1.LabelEdit = True
    ' Allow the user to rearrange columns.
    listView1.AllowColumnReorder = True
    ' Display check boxes.
    listView1.CheckBoxes = True
    ' Select the item and subitems when selection is made.
    listView1.FullRowSelect = True
    ' Display grid lines.
    listView1.GridLines = True
    ' Sort the items in the list in ascending order.
    listView1.Sorting = SortOrder.Ascending

    ' Create three items and three sets of subitems for each item.
    Dim item1 As New ListViewItem("item1", 0)
    ' Place a check mark next to the item.
    item1.Checked = True
    item1.SubItems.Add("1")
    item1.SubItems.Add("2")
    item1.SubItems.Add("3")
    Dim item2 As New ListViewItem("item2", 1)
    item2.SubItems.Add("4")
    item2.SubItems.Add("5")
    item2.SubItems.Add("6")
    Dim item3 As New ListViewItem("item3", 0)
    ' Place a check mark next to the item.
    item3.Checked = True
    item3.SubItems.Add("7")
    item3.SubItems.Add("8")
    item3.SubItems.Add("9")

    ' Create columns for the items and subitems.
    ' Width of -2 indicates auto-size.
    listView1.Columns.Add("Item Column", -2, HorizontalAlignment.Left)
    listView1.Columns.Add("Column 2", -2, HorizontalAlignment.Left)
    listView1.Columns.Add("Column 3", -2, HorizontalAlignment.Left)
    listView1.Columns.Add("Column 4", -2, HorizontalAlignment.Center)

    'Add the items to the ListView.
    listView1.Items.AddRange(New ListViewItem() {item1, item2, item3})

    ' Create two ImageList objects.
    Dim imageListSmall As New ImageList()
    Dim imageListLarge As New ImageList()

    ' Initialize the ImageList objects with bitmaps.
    imageListSmall.Images.Add(Bitmap.FromFile("C:\MySmallImage1.bmp"))
    imageListSmall.Images.Add(Bitmap.FromFile("C:\MySmallImage2.bmp"))
    imageListLarge.Images.Add(Bitmap.FromFile("C:\MyLargeImage1.bmp"))
    imageListLarge.Images.Add(Bitmap.FromFile("C:\MyLargeImage2.bmp"))

    'Assign the ImageList objects to the ListView.
    listView1.LargeImageList = imageListLarge
    listView1.SmallImageList = imageListSmall

    ' Add the ListView to the control collection.
    Me.Controls.Add(listView1)
End Sub

備註

控制項 ListView 可讓您顯示具有專案文字的專案清單,並選擇性地顯示圖示來識別專案類型。 例如,檔案的 Windows 檔案總管清單外觀 ListView 類似于 控制項。 它會顯示樹狀結構中目前選取的檔案和資料夾清單。 每個檔案和資料夾都會顯示與其相關聯的圖示,以協助識別檔案或資料夾的類型。 類別 ListViewItem 代表 控制項內的 ListView 專案。 清單中顯示的專案可以顯示在五個不同檢視的其中之一。 專案可以顯示為大型圖示、小型圖示或垂直清單中的小圖示。 專案也可以有子專案,其中包含與父專案相關的資訊。 詳細資料檢視可讓您在方格中顯示專案及其子專案,其中包含可識別子專案中所顯示資訊的資料行標頭。 圖格檢視具有有限的可用性,如下所述,可讓您將專案及其子專案顯示為圖格,其中包含文字資訊旁的大型圖示。 ListView 支援單一或多個選取。 多重選取功能可讓使用者以類似 ListBox 控制項的方式,從專案清單中選取。 此外,使用者可以啟動選取的專案來執行工作。 例如,您可以使用 ListView 控制項來顯示應用程式接著可以開啟及利用的檔案清單。 使用者可以選取要開啟的檔案,然後按兩下它們來啟動專案,並在應用程式中開啟檔案。 ListView也可以使用 屬性來顯示覆選框 CheckBoxes ,讓使用者檢查他們想要執行動作的專案。 您可以使用各種方式使用 ListView 控制項。 控制項可用來顯示應用程式、資料庫或文字檔中的資訊。 ListView也可以用來從使用者取得資訊,例如選取一組要處理的檔案。

ListView 提供大量的屬性,可提供外觀和行為的彈性。 屬性 View 可讓您變更顯示專案的方式。 LargeImageListSmallImageListStateImageList 屬性可讓您指定 ImageList 物件,這些物件包含針對專案顯示的影像,如果是 StateImageList ,則會在 屬性設定 true 為 時 CheckBoxes 顯示覆選框。 若要判斷要檢查哪些專案,您可以使用 CheckedItems 屬性來存取 ListView.CheckedListViewItemCollection 集合。 屬性 Columns 允許存取 ListView.ColumnHeaderCollection ,這會儲存控制項的 屬性設定 Details 為 時 View 所顯示的資料行標頭。 專案會透過 Items 屬性從 新增和移除 ListView 。 屬性 Items 可讓您存取 ListView.ListViewItemCollection 控制項的 ,其提供用來操作 控制項中專案的方法。 如果您想要允許使用者編輯專案的文字,您可以使用 LabelEdit 屬性。 當您的控制項包含大量專案時,使用者通常更容易在已排序的清單中看到這些專案。 您可以使用 Sorting 屬性依字母順序排序專案。 您也可以完全自訂控制項的外觀 ListView 。 若要這樣做,請將 OwnerDraw 屬性設定為 true ,並處理下列一或多個事件: DrawItem 、、 DrawSubItemDrawColumnHeader

當 控制項的 ListView 屬性設定為 DetailsView ,會使用控制項的許多屬性。 屬性 AllowColumnReorder 可讓使用者在 ListView 執行時間重新設定資料行的順序。 屬性 FullRowSelect 允許選取專案及其子專案,而不只是選取專案。 若要在詳細資料檢視中顯示格線,以識別 中的 ListView 專案和子專案界限,您可以使用 GridLines 屬性。 屬性 HeaderStyle 可讓您指定要顯示的資料行標頭類型。

控制項 ListView 可以在虛擬模式中運作,其中 ListViewItem 會動態產生物件,而不是儲存在集合中 Items 。 這適用于處理經常變更其內容的大型清單或清單。 若要啟用虛擬模式,請將 VirtualMode 屬性設定為 true ,並處理 RetrieveVirtualItemCacheVirtualItemsSearchForVirtualItem 事件。

除了控制項可用的 ListView 許多屬性之外,還有一些方法和事件可供您的應用程式用來提供其他功能給 ListViewBeginUpdateEndUpdate 方法可讓您藉由防止控制項在每次加入專案時重繪,以改善將許多專案新增至 ListView 的效能。 ListView如果您的控制項正在顯示專案和子專案,您可以在使用者以滑鼠右鍵按一下子專案時提供功能。 若要判斷要按一下其子專案的專案,您可以使用 GetItemAt 方法。 在使用者編輯專案之後執行專案的驗證時,您可能會想要向使用者顯示特定專案以變更。 EnsureVisible您可以呼叫 方法,以確保特定專案位於控制項的可見區域中。

如果 屬性 LabelEdit 設定為 true ,您可以藉由為 和 AfterLabelEdit 事件建立事件處理常式 BeforeLabelEdit ,執行驗證文字之前和之後所編輯的文字等工作。 若要執行開啟檔案或顯示對話方塊等工作,以編輯 中顯示的 ListView 專案,您可以建立 ItemActivate 事件的事件處理常式。 如果您允許使用者在按一下資料行標頭時排序 中的 ListView 專案,您可以為 ColumnClick 事件建立事件處理常式來執行排序。 CheckBoxes當 屬性設定為 true 時,您可以藉由處理 ItemCheck 事件來判斷專案檢查狀態的變更何時發生。

您也可以使用 BackgroundImage 屬性來設定 的背景影像 ListView 。 您的應用程式必須具有 STAThreadAttributeMain 方法的 ,才能正確顯示控制項的背景影像 ListView 。 此外,如果 ListView 具有背景影像的控制項裝載于 Internet Explorer 中,請在應用程式資訊清單檔案中指定 comctl32.dll 6.0 版做為相依元件,以確保背景影像為屬性顯示。

Windows XP 和 Windows Server 2003 提供三個功能,可在應用程式呼叫 Application.EnableVisualStyles 方法時增強 ListView 控制項:磚檢視、群組和插入標記。

磚檢視可讓您藉由顯示大型圖示旁的專案和子專案文字,來平衡圖形和文字資訊。 將 View 屬性設定為 View.Tile 以啟用此行為。

群組功能可讓您以視覺化方式將專案分組成相關的類別。 Groups當您想要啟用此功能時,請使用 屬性將物件新增 ListViewGroupListView 控制項。 若要暫時停用此功能,請將 ShowGroups 屬性設定為 false

插入標記功能可讓您使用視覺化回饋來提供拖放專案重新置放,以指出置放位置。 ListViewInsertionMark使用透過 屬性擷取的物件 InsertionMark 來顯示插入標記。

這些功能僅適用于 Windows XP 和 Windows Server 2003。 在舊版作業系統上,與這些功能相關的程式碼沒有任何作用,磚檢視會顯示為大型圖示檢視,且插入標記和群組不會顯示。 在某些情況下,您可能想要包含可判斷這些功能是否可用的程式碼,並在無法使用時提供替代功能。 這些功能是由提供作業系統主題功能的相同程式庫所提供。 若要檢查此程式庫的可用性,請呼叫 FeatureSupport.IsPresent(Object) 方法多載並傳入 OSFeature.Themes 值。

下表顯示其中一些 ListView 成員及其有效的檢視。

ListView 成員 檢視
Alignment 屬性 SmallIconLargeIcon
AutoArrange 屬性 SmallIconLargeIcon
AutoResizeColumn 方法 Details
Columns 屬性 DetailsTile
DrawSubItem 事件 Details
FindItemWithText 方法 DetailsListTile
FindNearestItem 方法 SmallIconLargeIcon
GetItemAt 方法 DetailsTile
Groups 屬性 除了 以外的所有檢視 List
HeaderStyle 屬性 Details
InsertionMark 屬性 LargeIconSmallIconTile

建構函式

ListView()

初始化 ListView 類別的新執行個體。

屬性

AccessibilityObject

取得指定給控制項的 AccessibleObject

(繼承來源 Control)
AccessibleDefaultActionDescription

取得或設定協助用戶端應用程式所使用的控制項的預設動作描述。

(繼承來源 Control)
AccessibleDescription

取得或設定協助工具用戶端應用程式使用之控制項的描述。

(繼承來源 Control)
AccessibleName

取得或設定協助工具用戶端應用程式使用的控制項名稱。

(繼承來源 Control)
AccessibleRole

取得或設定控制項的可存取角色。

(繼承來源 Control)
Activation

取得或設定使用者必須採取才能夠啟動項目的動作類型。

Alignment

取得或設定控制項中項目的對齊。

AllowColumnReorder

取得或設定值,指出使用者是否可以拖曳資料行標頭,將控制項中的資料行重新排列。

AllowDrop

取得或設定值,指出控制項是否能接受使用者拖放上來的資料。

(繼承來源 Control)
Anchor

取得或設定控制項繫結至的容器邊緣,並決定控制項隨其父代重新調整大小的方式。

(繼承來源 Control)
AutoArrange

取得或設定是否自動將圖示保持為已管理。

AutoScrollOffset

取得或設定此控制項在 ScrollControlIntoView(Control) 中要捲動到哪一個位置。

(繼承來源 Control)
AutoSize

這個屬性與這個類別無關。

(繼承來源 Control)
BackColor

取得或設定背景色彩。

BackgroundImage

取得或設定在此 ListView 控制項中顯示的背景影像。

BackgroundImage

取得或設定在控制項中顯示的背景影像。

(繼承來源 Control)
BackgroundImageLayout

取得或設定 ImageLayout 值。

BackgroundImageLayout

取得或設定在 ImageLayout 列舉類型中所定義的背景影像配置。

(繼承來源 Control)
BackgroundImageTiled

取得或設定值,指出 ListView 的背景影像是否應該並排顯示。

BindingContext

取得或設定控制項的 BindingContext

(繼承來源 Control)
BorderStyle

取得或設定控制項的框線樣式。

Bottom

取得控制項下邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
Bounds

取得或設定控制項 (包括其非工作區項目) 相對於父控制項之大小和位置 (單位為像素)。

(繼承來源 Control)
CanEnableIme

取得值,這個值表示 ImeMode 屬性是否可以設定為使用中的值,以啟用 IME 支援。

(繼承來源 Control)
CanFocus

取得指示控制項是否能取得焦點的值。

(繼承來源 Control)
CanRaiseEvents

判斷是否可以在控制項上引發事件。

(繼承來源 Control)
CanSelect

取得指示能否選取控制項的值。

(繼承來源 Control)
Capture

取得或設定值,指出控制項是否捕捉住滑鼠。

(繼承來源 Control)
CausesValidation

取得或設定值,指出控制項取得焦點時,是否會在任何需要驗證的控制項上執行驗證。

(繼承來源 Control)
CheckBoxes

取得或設定值,指出控制項中每個項目的旁邊是否要出現核取方塊。

CheckedIndices

取得控制項中目前選取項目的索引。

CheckedItems

取得控制項中目前選取的項目。

ClientRectangle

取得表示控制項工作區的矩形。

(繼承來源 Control)
ClientSize

取得或設定控制項工作區的高度和寬度。

(繼承來源 Control)
Columns

取得控制項中顯示的所有資料行標頭的集合。

CompanyName

取得包含控制項之應用程式的公司名稱或建立者。

(繼承來源 Control)
Container

取得包含 IContainerComponent

(繼承來源 Component)
ContainsFocus

取得指示控制項 (或其子控制項之一) 目前是否擁有輸入焦點的值。

(繼承來源 Control)
ContextMenu

取得或設定與控制項關聯的捷徑功能表。

(繼承來源 Control)
ContextMenuStrip

取得或設定與這個控制項相關的 ContextMenuStrip

(繼承來源 Control)
Controls

取得控制項中包含的控制項集合。

(繼承來源 Control)
Created

取得值,指出是否已經建立控制項。

(繼承來源 Control)
CreateParams

這個屬性與這個類別無關。

Cursor

取得或設定滑鼠指標移至控制項上時顯示的游標。

(繼承來源 Control)
DataBindings

取得控制項的資料繫結 (Data Binding)。

(繼承來源 Control)
DataContext

取得或設定資料系結用途的資料內容。 這是環境屬性。

(繼承來源 Control)
DefaultCursor

取得或設定控制項的預設游標。

(繼承來源 Control)
DefaultImeMode

取得控制項支援的預設輸入法 (IME) 模式。

(繼承來源 Control)
DefaultMargin

取得控制項之間的預設指定間距 (單位為像素)。

(繼承來源 Control)
DefaultMaximumSize

取得指定為控制項的預設大小之最大值的長度和高度 (單位為像素)。

(繼承來源 Control)
DefaultMinimumSize

取得指定為控制項的預設大小之最小值的長度和高度 (單位為像素)。

(繼承來源 Control)
DefaultPadding

取得控制項內容的內部間距 (單位為像素)。

(繼承來源 Control)
DefaultSize

取得控制項的預設大小。

DesignMode

取得值,指出 Component 目前是否處於設計模式。

(繼承來源 Component)
DeviceDpi

取得目前顯示控制項的顯示裝置的 DPI 值。

(繼承來源 Control)
DisplayRectangle

取得表示控制項顯示區域的矩形。

(繼承來源 Control)
Disposing

取得值,指出基底 Control 類別是否正在處置的過程中。

(繼承來源 Control)
Dock

取得或設定停駐在其父控制項的控制項框線,並決定控制項隨其父代重新調整大小的方式。

(繼承來源 Control)
DoubleBuffered

取得或設定值,指出這個控制項是否應使用次要緩衝區重繪其介面,以減少或防止重繪閃動 (Flicker)。

DoubleBuffered

取得或設定值,指出這個控制項是否應使用次要緩衝區重繪其介面,以減少或防止重繪閃動 (Flicker)。

(繼承來源 Control)
Enabled

取得或設定值,指出控制項是否可回應使用者互動。

(繼承來源 Control)
Events

取得附加在這個 Component 上的事件處理常式清單。

(繼承來源 Component)
Focused

取得指示控制項是否擁有輸入焦點的值。

(繼承來源 Control)
FocusedItem

取得或設定目前焦點所在控制項中的項目。

Font

取得或設定控制項顯示之文字字型。

(繼承來源 Control)
FontHeight

取得或設定控制項字型的高度。

(繼承來源 Control)
ForeColor

取得或設定前景色彩。

FullRowSelect

取得或設定值,指出按一下項目是否會選取它的所有子項目。

GridLines

取得或設定值,指出包含控制項中項目和子項目的資料列和資料行之間是否會顯示格線。

GroupImageList

目前設定的 GroupIcon 映射清單。

Groups

取得指派給控制項的 ListViewGroup 物件集合。

Handle

取得控制項要繫結的目標視窗控制代碼。

(繼承來源 Control)
HasChildren

取得指示控制項是否包含一或多個子控制項的值。

(繼承來源 Control)
HeaderStyle

取得或設定資料行標頭的樣式。

Height

取得或設定控制項的高度。

(繼承來源 Control)
HideSelection

取得或設定值,指出當控制項遺失焦點時,控制項中已選取的項目是否還以反白顯示。

HotTracking

取得或設定值,指示當滑鼠指標移過項目或子項目上方時,其文字是否具有超連結外觀。

HoverSelection

取得或設定值,指出當滑鼠指標在項目上方停留數秒時,是否要自動選取項目。

ImeMode

取得或設定控制項的輸入法 (IME) 模式。

(繼承來源 Control)
ImeModeBase

取得或設定控制項的 IME 模式。

(繼承來源 Control)
InsertionMark

取得在 ListView 控制項之內拖曳項目時,用來指出應該置放位置的物件。

InvokeRequired

取得一個值。這個值會指示是否由於呼叫端是在建立控制項之執行緒以外的執行緒,因此在進行控制項的方法呼叫時,應呼叫叫用 (Invoke) 方法。

(繼承來源 Control)
IsAccessible

取得或設定值,指出可及性應用程式是否見得到控制項。

(繼承來源 Control)
IsAncestorSiteInDesignMode

指出這個控制項的其中一個上階是否已月臺,以及該月臺在 DesignMode 中。 這個屬性是唯讀的。

(繼承來源 Control)
IsDisposed

取得指示控制項是否已經處置的值。

(繼承來源 Control)
IsHandleCreated

取得指示控制項是否有相關控制代碼的值。

(繼承來源 Control)
IsMirrored

取得值,指出是否左右反轉控制項。

(繼承來源 Control)
Items

取得包含控制項中所有項目的集合。

LabelEdit

取得或設定值,指出使用者是否能編輯控制項中項目的標籤。

LabelWrap

取得或設定值,指出項目在控制項中顯示為圖示時,項目標籤是否要換行。

LargeImageList

取得或設定 ImageList,當項目在控制項中顯示為大圖示時使用。

LayoutEngine

取得控制項之配置引擎的快取執行個體。

(繼承來源 Control)
Left

取得或設定控制項左邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
ListViewItemSorter

取得或設定控制項的排序比較子。

Location

取得或設定對應至控制項容器左上角之控制項左上角的座標。

(繼承來源 Control)
Margin

取得或設定控制項之間的空格。

(繼承來源 Control)
MaximumSize

取得或設定 GetPreferredSize(Size) 可以指定的上限大小。

(繼承來源 Control)
MinimumSize

取得或設定 GetPreferredSize(Size) 可以指定的下限大小。

(繼承來源 Control)
MultiSelect

取得或設定值,指出是否可選取多個項目。

Name

取得或設定控制項的名稱。

(繼承來源 Control)
OwnerDraw

取得或設定值,指出 ListView 控制項是由作業系統或您提供的程式碼所描繪。

Padding

取得或設定 ListView 控制項及其內容之間的間距。

Padding

取得或設定控制項內的邊框間距。

(繼承來源 Control)
Parent

取得或設定控制項的父容器。

(繼承來源 Control)
PreferredSize

取得能夠容納控制項的矩形區域的大小。

(繼承來源 Control)
ProductName

取得包含控制項的組件的產品名稱。

(繼承來源 Control)
ProductVersion

取得包含控制項的組件的版本。

(繼承來源 Control)
RecreatingHandle

取得指示控制項目前是否正重新建立其控制代碼的值。

(繼承來源 Control)
Region

取得或設定與控制項關聯的視窗區域。

(繼承來源 Control)
RenderRightToLeft
已淘汰.
已淘汰.

此屬性現在已過時。

(繼承來源 Control)
ResizeRedraw

取得或設定值,指出控制項重設大小時,是否會重繪本身。

(繼承來源 Control)
Right

取得控制項右邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
RightToLeft

取得或設定值,指出控制項的項目是否對齊,以支援使用由右至左字型的地區設定。

(繼承來源 Control)
RightToLeftLayout

取得或設定值,指出控制項是否由右至左配置。

ScaleChildren

取得值,以判斷子控制項的縮放。

(繼承來源 Control)
Scrollable

取得或設定值,指出沒有足夠空間可顯示所有項目時,是否要將捲軸加入控制項。

SelectedIndices

取得控制項中所選取項目的索引。

SelectedItems

取得控制項中已選取的項目。

ShowFocusCues

取得指示控制項是否應顯示焦點矩形 (Focus Rectangle) 的值。

(繼承來源 Control)
ShowGroups

取得或設定值,指出項目是否顯示在群組中。

ShowItemToolTips

取得或設定值,指示是否為包含於 ListViewItem 中的 ListView 物件顯示工具提示。

ShowKeyboardCues

取得值,指出使用者介面是否處於可顯示或隱藏鍵盤快速鍵的適當狀態下。

(繼承來源 Control)
Site

取得或設定控制項的站台。

(繼承來源 Control)
Size

取得或設定控制項的高度和寬度。

(繼承來源 Control)
SmallImageList

取得或設定 ImageList,當控制項中的項目顯示為小圖示時使用。

Sorting

取得或設定控制項中項目的排序次序。

StateImageList

取得或設定與控制項中應用程式定義狀態相關的 ImageList

TabIndex

取得或設定控制項容器中的控制項定位順序。

(繼承來源 Control)
TabStop

取得或設定值,指出使用者是否能使用 TAB 鍵,將焦點 (Focus) 給予這個控制項。

(繼承來源 Control)
Tag

取得或設定物件,其包含控制項相關資料。

(繼承來源 Control)
Text

這個屬性與這個類別無關。

TileSize

取得或設定在並排顯示中所顯示的方磚大小。

Top

取得或設定控制項上邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
TopItem

取得或設定控制項中第一個可見的項目。

TopLevelControl

取得沒有其他 Windows Form 父控制項的父控制項。 通常,這會是內含控制項最外層的 Form

(繼承來源 Control)
UseCompatibleStateImageBehavior

取得或設定值,指出 使用 ListView 與 .NET Framework 1.1 或 .NET Framework 2.0 相容的狀態影像行為。

UseWaitCursor

取得或設定值,指出是否將等待游標用於目前控制項和所有子控制項。

(繼承來源 Control)
View

取得或設定控制項中項目的顯示方式。

VirtualListSize

取得或設定在虛擬模式下,包含於清單中的 ListViewItem 物件數目。

VirtualMode

取得或設定值,指出您是否已經為 ListView 控制項提供您自己的資料管理作業。

Visible

取得或設定值,這個值指出是否顯示控制項及其所有子控制項。

(繼承來源 Control)
Width

取得或設定控制項的寬度。

(繼承來源 Control)
WindowTarget

這個屬性與這個類別無關。

(繼承來源 Control)

方法

AccessibilityNotifyClients(AccessibleEvents, Int32)

將指定子控制項的指定 AccessibleEvents 告知協助工具用戶端應用程式。

(繼承來源 Control)
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

將指定子控制項的指定 AccessibleEvents 告知協助工具用戶端應用程式。

(繼承來源 Control)
ArrangeIcons()

控制項中的項目按照 Alignment 屬性的值顯示成為圖示時,可加以排列。

ArrangeIcons(ListViewAlignment)

控制項中的項目顯示為圖示時,用特定的對齊設定加以排列。

AutoResizeColumn(Int32, ColumnHeaderAutoResizeStyle)

根據調整大小樣式的指示,重新調整指定之資料行的寬度。

AutoResizeColumns(ColumnHeaderAutoResizeStyle)

根據調整大小樣式的指示,調整資料行的寬度。

BeginInvoke(Action)

在建立控制項基礎控制代碼的執行緒上執行指定的非同步委派。

(繼承來源 Control)
BeginInvoke(Delegate)

在建立控制項基礎控制代碼的執行緒上執行指定的非同步委派。

(繼承來源 Control)
BeginInvoke(Delegate, Object[])

在建立控制項基礎控制代碼的執行緒上,以指定的引數非同步執行指定的委派。

(繼承來源 Control)
BeginUpdate()

直到 EndUpdate() 方法呼叫前,防止控制項被繪製。

BringToFront()

將控制項帶到疊置順序的前面。

(繼承來源 Control)
Clear()

將控制項中所有的項目和資料行全部移除。

Contains(Control)

擷取指示控制項是否為控制項的子控制項的值。

(繼承來源 Control)
CreateAccessibilityInstance()

ListView 控制項的協助工具物件建立新的執行個體。

CreateAccessibilityInstance()

為控制項建立新的協助工具物件。

(繼承來源 Control)
CreateControl()

強制建立可見控制項,包含建立控制代碼和任何可見的子控制項。

(繼承來源 Control)
CreateControlsInstance()

建立控制項的控制項集合的新執行個體。

(繼承來源 Control)
CreateGraphics()

建立控制項的 Graphics

(繼承來源 Control)
CreateHandle()

建立控制項的控制代碼。

CreateObjRef(Type)

建立包含所有相關資訊的物件,這些資訊是產生用來與遠端物件通訊的所需 Proxy。

(繼承來源 MarshalByRefObject)
DefWndProc(Message)

傳送指定的訊息至預設的視窗程序。

(繼承來源 Control)
DestroyHandle()

終結與這個控制項相關的控制代碼。

(繼承來源 Control)
Dispose()

釋放 Component 所使用的所有資源。

(繼承來源 Component)
Dispose(Boolean)

釋放 ListView 所使用的 Unmanaged 資源,並選擇性地釋放 Managed 資源。

DoDragDrop(Object, DragDropEffects)

開始拖放作業。

(繼承來源 Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

開始拖曳作業。

(繼承來源 Control)
DrawToBitmap(Bitmap, Rectangle)

支援呈現為指定的點陣圖。

(繼承來源 Control)
EndInvoke(IAsyncResult)

擷取由傳遞的 IAsyncResult 表示的非同步作業的傳回值。

(繼承來源 Control)
EndUpdate()

繪製被 BeginUpdate() 方法暫止之後,恢復執行清單檢視控制項的繪製。

EnsureVisible(Int32)

確保特定項目在控制項中可見,必要時捲動控制項的內容。

Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
FindForm()

擷取控制項所在的表單。

(繼承來源 Control)
FindItemWithText(String)

找尋第一個以指定之文字值開始的 ListViewItem

FindItemWithText(String, Boolean, Int32)

如果有指示,則找尋第一個以指定之文字值開始的 ListViewItemListViewItem.ListViewSubItem。 搜尋會從指定的索引開始。

FindItemWithText(String, Boolean, Int32, Boolean)

如果有指示,則找尋第一個以指定之文字值開始的 ListViewItemListViewItem.ListViewSubItem。 搜尋會從指定的索引開始。

FindNearestItem(SearchDirectionHint, Int32, Int32)

從指定的 x 和 y 座標開始尋找下一個項目,朝指定的方向搜尋。

FindNearestItem(SearchDirectionHint, Point)

從指定的點尋找下一個項目,朝指定的方向搜尋。

Focus()

設定控制項的輸入焦點。

(繼承來源 Control)
GetAccessibilityObjectById(Int32)

擷取指定的 AccessibleObject

(繼承來源 Control)
GetAutoSizeMode()

擷取值,表示已啟用控制項的 AutoSize 屬性時,該控制項的行為模式為何。

(繼承來源 Control)
GetChildAtPoint(Point)

擷取位於指定座標的子控制項。

(繼承來源 Control)
GetChildAtPoint(Point, GetChildAtPointSkip)

擷取位於指定座標上的子控制項,指定是否要忽略特定類型的子控制項。

(繼承來源 Control)
GetContainerControl()

傳回父控制項的控制項鏈結上的下一個 ContainerControl

(繼承來源 Control)
GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetItemAt(Int32, Int32)

擷取位於指定位置的項目。

GetItemRect(Int32)

擷取清單檢視控制項內特定項目的周框。

GetItemRect(Int32, ItemBoundsPortion)

擷取清單檢視控制項中,特定項目之周框的特定部分。

GetLifetimeService()
已淘汰.

擷取控制這個執行個體存留期 (Lifetime) 原則的目前存留期服務物件。

(繼承來源 MarshalByRefObject)
GetNextControl(Control, Boolean)

擷取子控制項定位順序中前後的下一個控制項。

(繼承來源 Control)
GetPreferredSize(Size)

擷取可容納控制項之矩形區域的大小。

(繼承來源 Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

擷取縮放控制項的範圍。

(繼承來源 Control)
GetService(Type)

傳回表示 Component 或其 Container 所提供之服務的物件。

(繼承來源 Component)
GetStyle(ControlStyles)

擷取控制項指定控制項樣式位元的值。

(繼承來源 Control)
GetTopLevel()

判斷控制項是否為最上層控制項。

(繼承來源 Control)
GetType()

取得目前執行個體的 Type

(繼承來源 Object)
Hide()

對使用者隱藏控制項。

(繼承來源 Control)
HitTest(Int32, Int32)

提供指定之 x 和 y 座標的項目資訊。

HitTest(Point)

提供指定之點的項目資訊。

InitializeLifetimeService()
已淘汰.

取得存留期服務物件,以控制這個執行個體的存留期原則。

(繼承來源 MarshalByRefObject)
InitLayout()

在控制項加入其他容器後呼叫。

(繼承來源 Control)
Invalidate()

讓控制項的整個介面失效,並重新繪製控制項。

(繼承來源 Control)
Invalidate(Boolean)

使控制項的特定區域失效,並且造成傳送繪製訊息至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invalidate(Rectangle)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。

(繼承來源 Control)
Invalidate(Rectangle, Boolean)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invalidate(Region)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。

(繼承來源 Control)
Invalidate(Region, Boolean)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invoke(Action)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
Invoke(Delegate)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
Invoke(Delegate, Object[])

在擁有控制項基礎視窗控制代碼的執行緒上,以指定的引數清單執行指定的委派。

(繼承來源 Control)
Invoke<T>(Func<T>)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
InvokeGotFocus(Control, EventArgs)

引發指定之控制項的 GotFocus 事件。

(繼承來源 Control)
InvokeLostFocus(Control, EventArgs)

引發指定之控制項的 LostFocus 事件。

(繼承來源 Control)
InvokeOnClick(Control, EventArgs)

引發指定之控制項的 Click 事件。

(繼承來源 Control)
InvokePaint(Control, PaintEventArgs)

引發指定之控制項的 Paint 事件。

(繼承來源 Control)
InvokePaintBackground(Control, PaintEventArgs)

引發指定之控制項的 PaintBackground 事件。

(繼承來源 Control)
IsInputChar(Char)

判斷字元是否為控制項辨認的輸入字元。

(繼承來源 Control)
IsInputKey(Keys)

判斷指定的按鍵是標準輸入按鍵或需要前置處理的特殊按鍵。

LogicalToDeviceUnits(Int32)

將邏輯 DPI 值轉換為它的對等 DeviceUnit DPI 值。

(繼承來源 Control)
LogicalToDeviceUnits(Size)

針對目前的 DPI 調整大小,並四捨五入為最接近的寬度和高度整數值,以將大小從邏輯轉換成裝置單位。

(繼承來源 Control)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
MemberwiseClone(Boolean)

建立目前 MarshalByRefObject 物件的淺層複本。

(繼承來源 MarshalByRefObject)
NotifyInvalidate(Rectangle)

引發 Invalidated 事件,包含要失效的指定控制項區域。

(繼承來源 Control)
OnAfterLabelEdit(LabelEditEventArgs)

引發 AfterLabelEdit 事件。

OnAutoSizeChanged(EventArgs)

引發 AutoSizeChanged 事件。

(繼承來源 Control)
OnBackColorChanged(EventArgs)

引發 BackColorChanged 事件。

(繼承來源 Control)
OnBackgroundImageChanged(EventArgs)

引發 BackgroundImageChanged 事件。

OnBackgroundImageChanged(EventArgs)

引發 BackgroundImageChanged 事件。

(繼承來源 Control)
OnBackgroundImageLayoutChanged(EventArgs)

引發 BackgroundImageLayoutChanged 事件。

(繼承來源 Control)
OnBeforeLabelEdit(LabelEditEventArgs)

引發 BeforeLabelEdit 事件。

OnBindingContextChanged(EventArgs)

引發 BindingContextChanged 事件。

(繼承來源 Control)
OnCacheVirtualItems(CacheVirtualItemsEventArgs)

引發 CacheVirtualItems 事件。

OnCausesValidationChanged(EventArgs)

引發 CausesValidationChanged 事件。

(繼承來源 Control)
OnChangeUICues(UICuesEventArgs)

引發 ChangeUICues 事件。

(繼承來源 Control)
OnClick(EventArgs)

引發 Click 事件。

(繼承來源 Control)
OnClientSizeChanged(EventArgs)

引發 ClientSizeChanged 事件。

(繼承來源 Control)
OnColumnClick(ColumnClickEventArgs)

引發 ColumnClick 事件。

OnColumnReordered(ColumnReorderedEventArgs)

引發 ColumnReordered 事件。

OnColumnWidthChanged(ColumnWidthChangedEventArgs)

引發 ColumnWidthChanged 事件。

OnColumnWidthChanging(ColumnWidthChangingEventArgs)

引發 ColumnWidthChanging 事件。

OnContextMenuChanged(EventArgs)

引發 ContextMenuChanged 事件。

(繼承來源 Control)
OnContextMenuStripChanged(EventArgs)

引發 ContextMenuStripChanged 事件。

(繼承來源 Control)
OnControlAdded(ControlEventArgs)

引發 ControlAdded 事件。

(繼承來源 Control)
OnControlRemoved(ControlEventArgs)

引發 ControlRemoved 事件。

(繼承來源 Control)
OnCreateControl()

引發 CreateControl() 方法。

(繼承來源 Control)
OnCursorChanged(EventArgs)

引發 CursorChanged 事件。

(繼承來源 Control)
OnDataContextChanged(EventArgs)

代表 Windows 清單檢視控制項,顯示出使用四種不同檢視的其中一個就可以顯示出來的項目集合。

(繼承來源 Control)
OnDockChanged(EventArgs)

引發 DockChanged 事件。

(繼承來源 Control)
OnDoubleClick(EventArgs)

引發 DoubleClick 事件。

(繼承來源 Control)
OnDpiChangedAfterParent(EventArgs)

引發 DpiChangedAfterParent 事件。

(繼承來源 Control)
OnDpiChangedBeforeParent(EventArgs)

引發 DpiChangedBeforeParent 事件。

(繼承來源 Control)
OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 Control)
OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 Control)
OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 Control)
OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 Control)
OnDrawColumnHeader(DrawListViewColumnHeaderEventArgs)

引發 DrawColumnHeader 事件。

OnDrawItem(DrawListViewItemEventArgs)

引發 DrawItem 事件。

OnDrawSubItem(DrawListViewSubItemEventArgs)

引發 DrawSubItem 事件。

OnEnabledChanged(EventArgs)

引發 EnabledChanged 事件。

OnEnabledChanged(EventArgs)

引發 EnabledChanged 事件。

(繼承來源 Control)
OnEnter(EventArgs)

引發 Enter 事件。

(繼承來源 Control)
OnFontChanged(EventArgs)

引發 FontChanged 事件。

OnForeColorChanged(EventArgs)

引發 ForeColorChanged 事件。

(繼承來源 Control)
OnGiveFeedback(GiveFeedbackEventArgs)

引發 GiveFeedback 事件。

(繼承來源 Control)
OnGotFocus(EventArgs)

代表 Windows 清單檢視控制項,顯示出使用四種不同檢視的其中一個就可以顯示出來的項目集合。

OnGotFocus(EventArgs)

引發 GotFocus 事件。

(繼承來源 Control)
OnGroupCollapsedStateChanged(ListViewGroupEventArgs)

GroupCollapsedStateChanged引發 事件。

OnGroupTaskLinkClick(ListViewGroupEventArgs)

GroupTaskLinkClick引發 事件。

OnHandleCreated(EventArgs)

引發 HandleCreated 事件。

OnHandleDestroyed(EventArgs)

引發 HandleDestroyed 事件。

OnHelpRequested(HelpEventArgs)

引發 HelpRequested 事件。

(繼承來源 Control)
OnImeModeChanged(EventArgs)

引發 ImeModeChanged 事件。

(繼承來源 Control)
OnInvalidated(InvalidateEventArgs)

引發 Invalidated 事件。

(繼承來源 Control)
OnItemActivate(EventArgs)

引發 ItemActivate 事件。

OnItemCheck(ItemCheckEventArgs)

引發 ItemCheck 事件。

OnItemChecked(ItemCheckedEventArgs)

引發 ItemChecked 事件。

OnItemDrag(ItemDragEventArgs)

引發 ItemDrag 事件。

OnItemMouseHover(ListViewItemMouseHoverEventArgs)

引發 ItemMouseHover 事件。

OnItemSelectionChanged(ListViewItemSelectionChangedEventArgs)

引發 ItemSelectionChanged 事件。

OnKeyDown(KeyEventArgs)

引發 KeyDown 事件。

(繼承來源 Control)
OnKeyPress(KeyPressEventArgs)

引發 KeyPress 事件。

(繼承來源 Control)
OnKeyUp(KeyEventArgs)

引發 KeyUp 事件。

(繼承來源 Control)
OnLayout(LayoutEventArgs)

引發 Layout 事件。

(繼承來源 Control)
OnLeave(EventArgs)

引發 Leave 事件。

(繼承來源 Control)
OnLocationChanged(EventArgs)

引發 LocationChanged 事件。

(繼承來源 Control)
OnLostFocus(EventArgs)

代表 Windows 清單檢視控制項,顯示出使用四種不同檢視的其中一個就可以顯示出來的項目集合。

OnLostFocus(EventArgs)

引發 LostFocus 事件。

(繼承來源 Control)
OnMarginChanged(EventArgs)

引發 MarginChanged 事件。

(繼承來源 Control)
OnMouseCaptureChanged(EventArgs)

引發 MouseCaptureChanged 事件。

(繼承來源 Control)
OnMouseClick(MouseEventArgs)

引發 MouseClick 事件。

(繼承來源 Control)
OnMouseDoubleClick(MouseEventArgs)

引發 MouseDoubleClick 事件。

(繼承來源 Control)
OnMouseDown(MouseEventArgs)

引發 MouseDown 事件。

(繼承來源 Control)
OnMouseEnter(EventArgs)

引發 MouseEnter 事件。

(繼承來源 Control)
OnMouseHover(EventArgs)

引發 MouseHover 事件。

OnMouseHover(EventArgs)

引發 MouseHover 事件。

(繼承來源 Control)
OnMouseLeave(EventArgs)

引發 MouseLeave 事件。

OnMouseLeave(EventArgs)

引發 MouseLeave 事件。

(繼承來源 Control)
OnMouseMove(MouseEventArgs)

引發 MouseMove 事件。

(繼承來源 Control)
OnMouseUp(MouseEventArgs)

引發 MouseUp 事件。

(繼承來源 Control)
OnMouseWheel(MouseEventArgs)

引發 MouseWheel 事件。

(繼承來源 Control)
OnMove(EventArgs)

引發 Move 事件。

(繼承來源 Control)
OnNotifyMessage(Message)

將 Windows 訊息通知控制項。

(繼承來源 Control)
OnPaddingChanged(EventArgs)

引發 PaddingChanged 事件。

(繼承來源 Control)
OnPaint(PaintEventArgs)

引發 Paint 事件。

(繼承來源 Control)
OnPaintBackground(PaintEventArgs)

繪製控制項的背景。

(繼承來源 Control)
OnParentBackColorChanged(EventArgs)

當控制項容器的 BackColorChanged 屬性值變更時,會引發 BackColor 事件。

(繼承來源 Control)
OnParentBackgroundImageChanged(EventArgs)

當控制項容器的 BackgroundImageChanged 屬性值變更時,會引發 BackgroundImage 事件。

(繼承來源 Control)
OnParentBindingContextChanged(EventArgs)

當控制項容器的 BindingContextChanged 屬性值變更時,會引發 BindingContext 事件。

(繼承來源 Control)
OnParentChanged(EventArgs)

引發 ParentChanged 事件。

OnParentChanged(EventArgs)

引發 ParentChanged 事件。

(繼承來源 Control)
OnParentCursorChanged(EventArgs)

引發 CursorChanged 事件。

(繼承來源 Control)
OnParentDataContextChanged(EventArgs)

代表 Windows 清單檢視控制項,顯示出使用四種不同檢視的其中一個就可以顯示出來的項目集合。

(繼承來源 Control)
OnParentEnabledChanged(EventArgs)

當控制項容器的 EnabledChanged 屬性值變更時,會引發 Enabled 事件。

(繼承來源 Control)
OnParentFontChanged(EventArgs)

當控制項容器的 FontChanged 屬性值變更時,會引發 Font 事件。

(繼承來源 Control)
OnParentForeColorChanged(EventArgs)

當控制項容器的 ForeColorChanged 屬性值變更時,會引發 ForeColor 事件。

(繼承來源 Control)
OnParentRightToLeftChanged(EventArgs)

當控制項容器的 RightToLeftChanged 屬性值變更時,會引發 RightToLeft 事件。

(繼承來源 Control)
OnParentVisibleChanged(EventArgs)

當控制項容器的 VisibleChanged 屬性值變更時,會引發 Visible 事件。

(繼承來源 Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

引發 PreviewKeyDown 事件。

(繼承來源 Control)
OnPrint(PaintEventArgs)

引發 Paint 事件。

(繼承來源 Control)
OnQueryContinueDrag(QueryContinueDragEventArgs)

引發 QueryContinueDrag 事件。

(繼承來源 Control)
OnRegionChanged(EventArgs)

引發 RegionChanged 事件。

(繼承來源 Control)
OnResize(EventArgs)

引發 Resize 事件。

OnResize(EventArgs)

引發 Resize 事件。

(繼承來源 Control)
OnRetrieveVirtualItem(RetrieveVirtualItemEventArgs)

引發 RetrieveVirtualItem 事件。

OnRightToLeftChanged(EventArgs)

引發 RightToLeftChanged 事件。

(繼承來源 Control)
OnRightToLeftLayoutChanged(EventArgs)

引發 RightToLeftLayoutChanged 事件。

OnSearchForVirtualItem(SearchForVirtualItemEventArgs)

引發 SearchForVirtualItem 事件。

OnSelectedIndexChanged(EventArgs)

引發 SelectedIndexChanged 事件。

OnSizeChanged(EventArgs)

引發 SizeChanged 事件。

(繼承來源 Control)
OnStyleChanged(EventArgs)

引發 StyleChanged 事件。

(繼承來源 Control)
OnSystemColorsChanged(EventArgs)

引發 SystemColorsChanged 事件。

OnTabIndexChanged(EventArgs)

引發 TabIndexChanged 事件。

(繼承來源 Control)
OnTabStopChanged(EventArgs)

引發 TabStopChanged 事件。

(繼承來源 Control)
OnTextChanged(EventArgs)

引發 TextChanged 事件。

(繼承來源 Control)
OnValidated(EventArgs)

引發 Validated 事件。

(繼承來源 Control)
OnValidating(CancelEventArgs)

引發 Validating 事件。

(繼承來源 Control)
OnVirtualItemsSelectionRangeChanged(ListViewVirtualItemsSelectionRangeChangedEventArgs)

引發 VirtualItemsSelectionRangeChanged 事件。

OnVisibleChanged(EventArgs)

引發 VisibleChanged 事件。

(繼承來源 Control)
PerformLayout()

強制控制項將配置邏輯套用至其所有子控制項。

(繼承來源 Control)
PerformLayout(Control, String)

強制控制項將配置邏輯套用至其所有子控制項。

(繼承來源 Control)
PointToClient(Point)

將指定的螢幕點的位置計算為工作區座標 (Client Coordinate)。

(繼承來源 Control)
PointToScreen(Point)

將指定的工作區點的位置計算為螢幕座標。

(繼承來源 Control)
PreProcessControlMessage(Message)

先於訊息迴圈中前置處理鍵盤或輸入訊息後,再分派這些訊息。

(繼承來源 Control)
PreProcessMessage(Message)

先於訊息迴圈中前置處理鍵盤或輸入訊息後,再分派這些訊息。

(繼承來源 Control)
ProcessCmdKey(Message, Keys)

處理命令按鍵。

(繼承來源 Control)
ProcessDialogChar(Char)

處理對話方塊字元。

(繼承來源 Control)
ProcessDialogKey(Keys)

處理對話方塊按鍵。

(繼承來源 Control)
ProcessKeyEventArgs(Message)

處理按鍵訊息,並產生適當的控制項事件。

(繼承來源 Control)
ProcessKeyMessage(Message)

處理鍵盤訊息。

(繼承來源 Control)
ProcessKeyPreview(Message)

預覽鍵盤訊息。

(繼承來源 Control)
ProcessMnemonic(Char)

處理助憶鍵字元。

(繼承來源 Control)
RaiseDragEvent(Object, DragEventArgs)

引發適當的拖曳事件。

(繼承來源 Control)
RaiseKeyEvent(Object, KeyEventArgs)

引發適當的按鍵事件。

(繼承來源 Control)
RaiseMouseEvent(Object, MouseEventArgs)

引發適當的滑鼠事件。

(繼承來源 Control)
RaisePaintEvent(Object, PaintEventArgs)

引發適當的繪製事件。

(繼承來源 Control)
RealizeProperties()

初始化管理控制項外觀之 ListView 控制項的屬性。

RecreateHandle()

強制重新建立控制項的控制代碼。

(繼承來源 Control)
RectangleToClient(Rectangle)

以工作區座標計算指定的螢幕矩形大小和位置。

(繼承來源 Control)
RectangleToScreen(Rectangle)

以螢幕座標計算指定的工作區矩形大小和位置。

(繼承來源 Control)
RedrawItems(Int32, Int32, Boolean)

強制重新描繪一系列 ListViewItem 物件。

Refresh()

強制控制項使其工作區失效,並且立即重繪其本身和任何子控制項。

(繼承來源 Control)
RescaleConstantsForDpi(Int32, Int32)

提供在發生 DPI 變更時用來重新調整控制項的常數。

(繼承來源 Control)
ResetBackColor()

重設 BackColor 屬性為其預設值。

(繼承來源 Control)
ResetBindings()

使得繫結至 BindingSource 的控制項重新讀取清單中的所有項目,並重新整理其顯示的值。

(繼承來源 Control)
ResetCursor()

重設 Cursor 屬性為其預設值。

(繼承來源 Control)
ResetFont()

重設 Font 屬性為其預設值。

(繼承來源 Control)
ResetForeColor()

重設 ForeColor 屬性為其預設值。

(繼承來源 Control)
ResetImeMode()

重設 ImeMode 屬性為其預設值。

(繼承來源 Control)
ResetMouseEventArgs()

重設控制項來處理 MouseLeave 事件。

(繼承來源 Control)
ResetRightToLeft()

重設 RightToLeft 屬性為其預設值。

(繼承來源 Control)
ResetText()

Text 屬性重設為其預設值 (Empty)。

(繼承來源 Control)
ResumeLayout()

繼續平常的配置邏輯。

(繼承來源 Control)
ResumeLayout(Boolean)

繼續平常的配置邏輯,選擇性地強制暫止配置要求的立即配置。

(繼承來源 Control)
RtlTranslateAlignment(ContentAlignment)

將指定的 ContentAlignment 轉換為適當的 ContentAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateAlignment(HorizontalAlignment)

將指定的 HorizontalAlignment 轉換為適當的 HorizontalAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateAlignment(LeftRightAlignment)

將指定的 LeftRightAlignment 轉換為適當的 LeftRightAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateContent(ContentAlignment)

將指定的 ContentAlignment 轉換為適當的 ContentAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateHorizontal(HorizontalAlignment)

將指定的 HorizontalAlignment 轉換為適當的 HorizontalAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateLeftRight(LeftRightAlignment)

將指定的 LeftRightAlignment 轉換為適當的 LeftRightAlignment,以支援由右至左的文字。

(繼承來源 Control)
Scale(Single)
已淘汰.
已淘汰.

縮放控制項和任何的子控制項。

(繼承來源 Control)
Scale(Single, Single)
已淘汰.
已淘汰.

縮放整個控制項和任何的子控制項。

(繼承來源 Control)
Scale(SizeF)

根據指定的縮放比例來縮放控制項和所有子控制項。

(繼承來源 Control)
ScaleBitmapLogicalToDevice(Bitmap)

發生 DPI 變更時,將邏輯點陣圖值調整為它的對等裝置單位值。

(繼承來源 Control)
ScaleControl(SizeF, BoundsSpecified)

縮放控制項的位置、大小、邊框間距和邊界。

(繼承來源 Control)
ScaleCore(Single, Single)

這個方法與這個類別無關。

(繼承來源 Control)
Select()

啟動控制項。

(繼承來源 Control)
Select(Boolean, Boolean)

啟動子控制項。 選擇性指定定位順序中要選取控制項的方向。

(繼承來源 Control)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

啟動下一個控制項。

(繼承來源 Control)
SendToBack()

將控制項傳送到疊置順序的後面。

(繼承來源 Control)
SetAutoSizeMode(AutoSizeMode)

設定值,表示已啟用控制項的 AutoSize 屬性時,該控制項的行為模式為何。

(繼承來源 Control)
SetBounds(Int32, Int32, Int32, Int32)

將控制項的範圍設定為指定的位置和大小。

(繼承來源 Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

將控制項的指定範圍設定為指定的位置和大小。

(繼承來源 Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

執行設定這個控制項的指定範圍的工作。

(繼承來源 Control)
SetClientSizeCore(Int32, Int32)

設定控制項工作區的大小。

(繼承來源 Control)
SetStyle(ControlStyles, Boolean)

將指定的 ControlStyles 旗標設定為 truefalse

(繼承來源 Control)
SetTopLevel(Boolean)

將控制項設定為最上層控制項。

(繼承來源 Control)
SetVisibleCore(Boolean)

將控制項設定為指定的可見狀態。

(繼承來源 Control)
Show()

對使用者顯示控制項。

(繼承來源 Control)
SizeFromClientSize(Size)

從控制項的工作區之高度和寬度判斷整個控制項的大小。

(繼承來源 Control)
Sort()

為清單檢視中的項目排序。

SuspendLayout()

暫停控制項的配置邏輯。

(繼承來源 Control)
ToString()

傳回 ListView 控制項的字串表示。

Update()

使控制項重繪其工作區內的失效區域。

(繼承來源 Control)
UpdateBounds()

以目前大小和位置更新控制項的範圍。

(繼承來源 Control)
UpdateBounds(Int32, Int32, Int32, Int32)

以指定的大小和位置更新控制項的範圍。

(繼承來源 Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

以指定的大小、位置和工作區大小更新控制項的範圍。

(繼承來源 Control)
UpdateExtendedStyles()

更新套用在清單檢視控制項的延伸樣式。

UpdateStyles()

強制重新套用指派的樣式至控制項。

(繼承來源 Control)
UpdateZOrder()

以控制項的父控制項疊置順序更新控制項。

(繼承來源 Control)
WndProc(Message)

覆寫 WndProc(Message)

事件

AfterLabelEdit

發生於使用者編輯項目的標籤時。

AutoSizeChanged

這個事件與這個類別無關。

(繼承來源 Control)
BackColorChanged

發生於 BackColor 屬性的值變更時。

(繼承來源 Control)
BackgroundImageChanged

發生於 BackgroundImage 屬性的值變更時。

BackgroundImageChanged

發生於 BackgroundImage 屬性的值變更時。

(繼承來源 Control)
BackgroundImageLayoutChanged

發生於 BackgroundImageLayout 屬性變更時。

BackgroundImageLayoutChanged

發生於 BackgroundImageLayout 屬性變更時。

(繼承來源 Control)
BeforeLabelEdit

發生於使用者開始編輯項目的標籤時。

BindingContextChanged

發生於 BindingContext 屬性的值變更時。

(繼承來源 Control)
CacheVirtualItems

當已變更虛擬模式中 ListView 的顯示區域內容,而且 ListView 判斷需要新的項目範圍時發生。

CausesValidationChanged

發生於 CausesValidation 屬性的值變更時。

(繼承來源 Control)
ChangeUICues

發生於焦點或鍵盤使用者介面 (UI) 提示變更時。

(繼承來源 Control)
Click

發生於按下控制項時。

(繼承來源 Control)
ClientSizeChanged

發生於 ClientSize 屬性的值變更時。

(繼承來源 Control)
ColumnClick

發生於使用者按一下清單檢視控制項中的資料行標頭時。

ColumnReordered

發生於資料行標頭順序已變更時。

ColumnWidthChanged

發生於成功變更資料行寬度後。

ColumnWidthChanging

發生於資料行的寬度變更時。

ContextMenuChanged

發生於 ContextMenu 屬性的值變更時。

(繼承來源 Control)
ContextMenuStripChanged

發生於 ContextMenuStrip 屬性的值變更時。

(繼承來源 Control)
ControlAdded

發生於加入新控制項至 Control.ControlCollection 時。

(繼承來源 Control)
ControlRemoved

發生於從 Control.ControlCollection 移除控制項時。

(繼承來源 Control)
CursorChanged

發生於 Cursor 屬性的值變更時。

(繼承來源 Control)
DataContextChanged

發生於 DataContext 屬性的值變更時。

(繼承來源 Control)
Disposed

Dispose() 方法的呼叫處置元件時,就會發生。

(繼承來源 Component)
DockChanged

發生於 Dock 屬性的值變更時。

(繼承來源 Control)
DoubleClick

發生於按兩下控制項時。

(繼承來源 Control)
DpiChangedAfterParent

發生於某個控制項的父控制項或表單已變更之後,以程式設計方式變更其 DPI 設定時。

(繼承來源 Control)
DpiChangedBeforeParent

發生於某個控制項的父控制項或表單發生 DPI 變更事件之前,以程式設計方式變更其 DPI 設定時。

(繼承來源 Control)
DragDrop

發生於拖放作業完成時。

(繼承來源 Control)
DragEnter

發生於將物件拖曳至控制項邊框時。

(繼承來源 Control)
DragLeave

發生於將物件拖出控制項界限時。

(繼承來源 Control)
DragOver

發生於將物件拖曳至控制項邊框上方時。

(繼承來源 Control)
DrawColumnHeader

當已繪製 ListView 的詳細資料檢視而且 OwnerDraw 屬性設定為 true 時發生。

DrawItem

當已繪製 ListView 而且 OwnerDraw 屬性設定為 true 時發生。

DrawSubItem

當已繪製 ListView 的詳細資料檢視而且 OwnerDraw 屬性設定為 true 時發生。

EnabledChanged

發生於 Enabled 屬性值變更時。

(繼承來源 Control)
Enter

發生於輸入控制項時。

(繼承來源 Control)
FontChanged

發生在 Font 屬性值變更時。

(繼承來源 Control)
ForeColorChanged

發生在 ForeColor 屬性值變更時。

(繼承來源 Control)
GiveFeedback

發生於拖曳作業時。

(繼承來源 Control)
GotFocus

發生於控制項取得焦點時。

(繼承來源 Control)
GroupCollapsedStateChanged

ListViewGroup 上的 CollapsedState 變更時發生。

GroupTaskLinkClick

當使用者按一下 ListViewGroup 上的 TaskLink 時發生。

HandleCreated

發生於為控制項建立控制代碼時。

(繼承來源 Control)
HandleDestroyed

發生於終結控制項的控制代碼時。

(繼承來源 Control)
HelpRequested

發生於使用者要求控制項的說明時。

(繼承來源 Control)
ImeModeChanged

發生於 ImeMode 屬性變更時。

(繼承來源 Control)
Invalidated

發生於控制項的顯示需要重新繪製時。

(繼承來源 Control)
ItemActivate

發生於啟動項目時。

ItemCheck

發生於項目的勾選狀態變更時。

ItemChecked

發生於項目的已勾選狀態變更時。

ItemDrag

發生於使用者開始拖曳項目時。

ItemMouseHover

發生於滑鼠停留在項目上時。

ItemSelectionChanged

發生於項目的選取狀態變更時。

KeyDown

發生於按下按鍵且焦點在控制項時。

(繼承來源 Control)
KeyPress

發生於 控制項有焦點,並按下字元空格鍵或退格鍵時。

(繼承來源 Control)
KeyUp

發生於放開按鍵且焦點在控制項時。

(繼承來源 Control)
Layout

發生於控制項應重新調整其子控制項位置時。

(繼承來源 Control)
Leave

發生於輸入焦點離開控制項時。

(繼承來源 Control)
LocationChanged

發生於 Location 屬性值變更時。

(繼承來源 Control)
LostFocus

發生於控制項遺失焦點時。

(繼承來源 Control)
MarginChanged

發生於控制項的邊界變更時。

(繼承來源 Control)
MouseCaptureChanged

發生於控制項遺失滑鼠捕捉時。

(繼承來源 Control)
MouseClick

發生於使用滑鼠按一下控制項時。

(繼承來源 Control)
MouseDoubleClick

發生於以滑鼠按兩下控制項時。

(繼承來源 Control)
MouseDown

發生於滑鼠指標位於控制項上並按下滑鼠按鍵時。

(繼承來源 Control)
MouseEnter

發生於滑鼠指標進入控制項時。

(繼承來源 Control)
MouseHover

發生於滑鼠指標停留在控制項上時。

(繼承來源 Control)
MouseLeave

發生於滑鼠指標離開控制項時。

(繼承來源 Control)
MouseMove

發生於滑鼠指標移至控制項上時。

(繼承來源 Control)
MouseUp

發生於滑鼠指標位於控制項上並放開滑鼠按鍵時。

(繼承來源 Control)
MouseWheel

發生於滑鼠滾輪移動且焦點在控制項時。

(繼承來源 Control)
Move

發生於控制項移動時。

(繼承來源 Control)
PaddingChanged

發生於 Padding 屬性的值變更時。

PaddingChanged

發生於控制項的邊框間距變更時。

(繼承來源 Control)
Paint

發生於繪製 ListView 控制項時。

ParentChanged

發生在 Parent 屬性值變更時。

(繼承來源 Control)
PreviewKeyDown

發生於焦點位於這個控制項上時並按下鍵盤按鍵的 KeyDown 事件之前。

(繼承來源 Control)
QueryAccessibilityHelp

發生於 AccessibleObject 為協助工具應用程式提供說明時。

(繼承來源 Control)
QueryContinueDrag

發生於拖放作業時,讓拖曳來源能夠決定是否應取消拖放作業。

(繼承來源 Control)
RegionChanged

發生於 Region 屬性的值變更時。

(繼承來源 Control)
Resize

發生於重設控制項大小時。

(繼承來源 Control)
RetrieveVirtualItem

發生在 ListView 處於虛擬模式,而且需要 ListViewItem 時。

RightToLeftChanged

發生在 RightToLeft 屬性值變更時。

(繼承來源 Control)
RightToLeftLayoutChanged

發生於 RightToLeftLayout 屬性的值變更時。

SearchForVirtualItem

發生在 ListView 處於虛擬模式,而且已經開始進行搜尋時。

SelectedIndexChanged

發生於 SelectedIndices 集合變更時。

SizeChanged

發生在 Size 屬性值變更時。

(繼承來源 Control)
StyleChanged

發生於控制項樣式變更時。

(繼承來源 Control)
SystemColorsChanged

發生於系統色彩變更時。

(繼承來源 Control)
TabIndexChanged

發生在 TabIndex 屬性值變更時。

(繼承來源 Control)
TabStopChanged

發生在 TabStop 屬性值變更時。

(繼承來源 Control)
TextChanged

發生於 Text 屬性變更時。

Validated

發生於控制項完成驗證時。

(繼承來源 Control)
Validating

發生於驗證控制項時。

(繼承來源 Control)
VirtualItemsSelectionRangeChanged

發生在 ListView 處於虛擬模式,而且某個範圍之項目的選取狀態變更時。

VisibleChanged

發生在 Visible 屬性值變更時。

(繼承來源 Control)

明確介面實作

IDropTarget.OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 Control)
IDropTarget.OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 Control)
IDropTarget.OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 Control)
IDropTarget.OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 Control)

適用於

另請參閱