ListViewItem Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
ListViewItem sınıfının yeni bir örneğini başlatır.
Aşırı Yüklemeler
ListViewItem() |
ListViewItem sınıfının yeni bir örneğini varsayılan değerlerle başlatır. |
ListViewItem(String[], String, Color, Color, Font, ListViewGroup) |
Belirtilen metni, görüntüyü, renkleri, yazı tipini ve grubu içeren alt öğeleriyle sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(String[], Int32, Color, Color, Font, ListViewGroup) |
Öğenin simgesinin ListViewItem görüntü dizini konumu, ön plan rengi, arka plan rengi ve öğenin yazı tipi ve alt öğeleri temsil eden dize dizisi ile sınıfının yeni bir örneğini başlatır. Öğeyi belirtilen gruba atar. |
ListViewItem(String[], String, Color, Color, Font) |
Belirtilen metni, görüntüyü, renkleri ve yazı tipini içeren alt öğeleri ile sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(String[], Int32, Color, Color, Font) |
Öğenin simgesinin ListViewItem görüntü dizini konumu, ön plan rengi, arka plan rengi ve öğenin yazı tipi ve alt öğeleri temsil eden dize dizisi ile sınıfının yeni bir örneğini başlatır. |
ListViewItem(ListViewItem+ListViewSubItem[], String, ListViewGroup) |
Belirtilen alt öğeleri, görüntüyü ve grubu ile sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(ListViewItem+ListViewSubItem[], Int32, ListViewGroup) |
Öğenin simgesinin ListViewItem görüntü dizini konumu ve bir nesne dizisi ListViewItem.ListViewSubItem ile sınıfının yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar. |
ListViewItem(String[], String, ListViewGroup) |
Sınıfın ListViewItem yeni bir örneğini, belirtilen metin, görüntü ve grubu içeren alt sınıflarla başlatır. |
ListViewItem(String[], Int32, ListViewGroup) |
Öğenin simgesinin ListViewItem görüntü dizini konumu ve alt öğeleri temsil eden dize dizisiyle sınıfının yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar. |
ListViewItem(String, String, ListViewGroup) |
Belirtilen metin, görüntü ve grupla sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(ListViewItem+ListViewSubItem[], String) |
Belirtilen alt öğeleri ve görüntüyü kullanarak sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(String, Int32, ListViewGroup) |
Belirtilen öğe metni ve öğe simgesinin ListViewItem görüntü dizini konumuyla sınıfının yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar. |
ListViewItem(String[], ListViewGroup) |
Sınıfın ListViewItem yeni bir örneğini alt öğeleri temsil eden dize dizisiyle başlatır ve öğeyi belirtilen gruba atar. |
ListViewItem(String[], String) |
Belirtilen öğe ve alt öğe metni ve görüntüsüyle sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(String[], Int32) |
Öğenin simgesinin ListViewItem görüntü dizini konumu ve alt öğeleri temsil eden dize dizisi ile sınıfının yeni bir örneğini başlatır. |
ListViewItem(String, ListViewGroup) |
Belirtilen öğe metniyle sınıfının yeni bir örneğini ListViewItem başlatır ve belirtilen gruba atar. |
ListViewItem(String, String) |
Belirtilen metin ve görüntüyle sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(String, Int32) |
Belirtilen öğe metni ve öğe simgesinin ListViewItem görüntü dizini konumu ile sınıfının yeni bir örneğini başlatır. |
ListViewItem(SerializationInfo, StreamingContext) |
Belirtilen serileştirme bilgileri ve akış bağlamı ile sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(ListViewGroup) |
sınıfının yeni bir örneğini ListViewItem başlatır ve belirtilen gruba atar. |
ListViewItem(String[]) |
Sınıfın ListViewItem yeni bir örneğini, alt öğeleri temsil eden bir dize dizisiyle başlatır. |
ListViewItem(String) |
Belirtilen öğe metniyle sınıfının yeni bir örneğini ListViewItem başlatır. |
ListViewItem(ListViewItem+ListViewSubItem[], Int32) |
Öğenin simgesinin ListViewItem görüntü dizini konumu ve bir nesne dizisi ile sınıfının yeni bir örneğini ListViewItem.ListViewSubItem başlatır. |
ListViewItem()
ListViewItem sınıfının yeni bir örneğini varsayılan değerlerle başlatır.
public:
ListViewItem();
public ListViewItem ();
Public Sub New ()
Örnekler
Aşağıdaki kod örneği, belirtilen üç ListViewItem nesne ve her öğe için üç ListViewItem.ListViewSubItem nesne belirtilen bir ListView denetim oluşturur. Örnek ayrıca alt öğeleri ayrıntılar görünümünde görüntülemek için nesneler oluşturur ColumnHeader . Ayrıca kod örneğinde nesneler için görüntü sağlamak üzere ListViewItem iki ImageList nesne oluşturulur. Bu ImageList nesneler ve SmallImageList özelliklerine LargeImageList eklenir. Örnek, denetimi oluştururken ListView aşağıdaki özellikleri kullanır:
Kodu öğesine Form eklemeniz ve örnekte oluşturulan yöntemi oluşturucudan veya formdaki başka bir yöntemden çağırmanız gerekir. Örnek, , MySmallImage2
, MyLargeImage1
ve MyLargeImage2
adlı MySmallImage1
görüntülerin C sürücüsünün kök dizininde yer almalarını gerektirir.
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
Şunlara uygulanır
ListViewItem(String[], String, Color, Color, Font, ListViewGroup)
Belirtilen metni, görüntüyü, renkleri, yazı tipini ve grubu içeren alt öğeleriyle sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, System::String ^ imageKey, System::Drawing::Color foreColor, System::Drawing::Color backColor, System::Drawing::Font ^ font, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string[] items, string imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string[]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string[] * string * System.Drawing.Color * System.Drawing.Color * System.Drawing.Font * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageKey As String, foreColor As Color, backColor As Color, font As Font, group As ListViewGroup)
Parametreler
- items
- String[]
için alt öğe metnini temsil eden dize dizisi ListViewItem.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
imageKey
parametresi, sahibi ListView olan denetimle ilişkili içindeki bir görüntüyü ImageList belirtir ve bu görüntüye ImageList özelliğiyle erişilebilir.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Şunlara uygulanır
ListViewItem(String[], Int32, Color, Color, Font, ListViewGroup)
Öğenin simgesinin ListViewItem görüntü dizini konumu, ön plan rengi, arka plan rengi ve öğenin yazı tipi ve alt öğeleri temsil eden dize dizisi ile sınıfının yeni bir örneğini başlatır. Öğeyi belirtilen gruba atar.
public:
ListViewItem(cli::array <System::String ^> ^ items, int imageIndex, System::Drawing::Color foreColor, System::Drawing::Color backColor, System::Drawing::Font ^ font, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string[] items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string[]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string[] * int * System.Drawing.Color * System.Drawing.Color * System.Drawing.Font * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageIndex As Integer, foreColor As Color, backColor As Color, font As Font, group As ListViewGroup)
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String[], String, Color, Color, Font)
Belirtilen metni, görüntüyü, renkleri ve yazı tipini içeren alt öğeleri ile sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, System::String ^ imageKey, System::Drawing::Color foreColor, System::Drawing::Color backColor, System::Drawing::Font ^ font);
public ListViewItem (string[] items, string imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);
public ListViewItem (string[]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font);
new System.Windows.Forms.ListViewItem : string[] * string * System.Drawing.Color * System.Drawing.Color * System.Drawing.Font -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageKey As String, foreColor As Color, backColor As Color, font As Font)
Parametreler
- items
- String[]
için alt öğeleri temsil eden dize dizisi ListViewItem.
Açıklamalar
imageKey
parametresi, sahibi ListView olan denetimle ilişkili içindeki bir görüntüyü ImageList belirtir ve bu görüntüye ImageList özelliğiyle erişilebilir.
Şunlara uygulanır
ListViewItem(String[], Int32, Color, Color, Font)
Öğenin simgesinin ListViewItem görüntü dizini konumu, ön plan rengi, arka plan rengi ve öğenin yazı tipi ve alt öğeleri temsil eden dize dizisi ile sınıfının yeni bir örneğini başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, int imageIndex, System::Drawing::Color foreColor, System::Drawing::Color backColor, System::Drawing::Font ^ font);
public ListViewItem (string[] items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font font);
public ListViewItem (string[]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font);
new System.Windows.Forms.ListViewItem : string[] * int * System.Drawing.Color * System.Drawing.Color * System.Drawing.Font -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageIndex As Integer, foreColor As Color, backColor As Color, font As Font)
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
Örnekler
Aşağıdaki kod örneği, denetimdeki bir ListView sütuna ListView tıklandığında öğeleri el ile sıralayan bir denetim içeren bir form oluşturur. Örnek, karşılaştırmayı gerçekleştiren ListViewItem arabirimini uygulayan System.Collections.IComparer adlı ListViewItemComparer
bir sınıf tanımlar. Örnek, öğesinin ListViewItemComparer
bir örneğini oluşturur ve denetimin ListViewItemSorterListView özelliğini ayarlamak için bunu kullanır.
Sort Olay işleyicisindeki ColumnClick yöntem çağrısı, tıklanan sütuna göre öğe sıralamasını gerçekleştirmek için içinde ListViewItemComparer
tanımlanan yöntemleri kullanır.
#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;
// Implements the manual sorting of items by columns.
ref class ListViewItemComparer: public IComparer
{
private:
int col;
public:
ListViewItemComparer()
{
col = 0;
}
ListViewItemComparer( int column )
{
col = column;
}
virtual int Compare( Object^ x, Object^ y )
{
return String::Compare( (dynamic_cast<ListViewItem^>(x))->SubItems[ col ]->Text,
(dynamic_cast<ListViewItem^>(y))->SubItems[ col ]->Text );
}
};
public ref class ListViewSortForm: public Form
{
private:
ListView^ listView1;
public:
ListViewSortForm()
{
// Create ListView items to add to the control.
array<String^>^temp0 = {"Banana","a","b","c"};
ListViewItem^ listViewItem1 = gcnew ListViewItem( temp0,-1,Color::Empty,Color::Yellow,nullptr );
array<String^>^temp1 = {"Cherry","v","g","t"};
ListViewItem^ listViewItem2 = gcnew ListViewItem( temp1,-1,Color::Empty,Color::Red,
gcnew System::Drawing::Font( "Microsoft Sans Serif",8.25F,FontStyle::Regular,GraphicsUnit::Point,0 ) );
array<String^>^temp2 = {"Apple","h","j","n"};
ListViewItem^ listViewItem3 = gcnew ListViewItem( temp2,-1,Color::Empty,Color::Lime,nullptr );
array<String^>^temp3 = {"Pear","y","u","i"};
ListViewItem^ listViewItem4 = gcnew ListViewItem( temp3,-1,Color::Empty,Color::FromArgb( 192, 128, 156 ),nullptr );
//Initialize the ListView control and add columns to it.
this->listView1 = gcnew ListView;
// Set the initial sorting type for the ListView.
this->listView1->Sorting = SortOrder::None;
// Disable automatic sorting to enable manual sorting.
this->listView1->View = View::Details;
// Add columns and set their text.
this->listView1->Columns->Add( gcnew ColumnHeader );
this->listView1->Columns[ 0 ]->Text = "Column 1";
this->listView1->Columns[ 0 ]->Width = 100;
listView1->Columns->Add( gcnew ColumnHeader );
listView1->Columns[ 1 ]->Text = "Column 2";
listView1->Columns->Add( gcnew ColumnHeader );
listView1->Columns[ 2 ]->Text = "Column 3";
listView1->Columns->Add( gcnew ColumnHeader );
listView1->Columns[ 3 ]->Text = "Column 4";
// Suspend control logic until form is done configuring form.
this->SuspendLayout();
// Add Items to the ListView control.
array<ListViewItem^>^temp4 = {listViewItem1,listViewItem2,listViewItem3,listViewItem4};
this->listView1->Items->AddRange( temp4 );
// Set the location and size of the ListView control.
this->listView1->Location = Point(10,10);
this->listView1->Name = "listView1";
this->listView1->Size = System::Drawing::Size( 300, 100 );
this->listView1->TabIndex = 0;
// Enable editing of the items in the ListView.
this->listView1->LabelEdit = true;
// Connect the ListView::ColumnClick event to the ColumnClick event handler.
this->listView1->ColumnClick += gcnew ColumnClickEventHandler( this, &ListViewSortForm::ColumnClick );
// Initialize the form.
this->ClientSize = System::Drawing::Size( 400, 400 );
array<Control^>^temp5 = {this->listView1};
this->Controls->AddRange( temp5 );
this->Name = "ListViewSortForm";
this->Text = "Sorted ListView Control";
// Resume lay[Out] of* the form.
this->ResumeLayout( false );
}
private:
// ColumnClick event handler.
void ColumnClick( Object^ /*o*/, ColumnClickEventArgs^ e )
{
// Set the ListViewItemSorter property to a new ListViewItemComparer
// object. Setting this property immediately sorts the
// ListView using the ListViewItemComparer object.
this->listView1->ListViewItemSorter = gcnew ListViewItemComparer( e->Column );
}
};
[System::STAThreadAttribute]
int main()
{
Application::Run( gcnew ListViewSortForm );
}
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Collections;
namespace ListViewSortFormNamespace
{
public class ListViewSortForm : Form
{
private ListView listView1;
public ListViewSortForm()
{
// Create ListView items to add to the control.
ListViewItem listViewItem1 = new ListViewItem(new string[] {"Banana","a","b","c"}, -1, Color.Empty, Color.Yellow, null);
ListViewItem listViewItem2 = new ListViewItem(new string[] {"Cherry","v","g","t"}, -1, Color.Empty, Color.Red, new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular, GraphicsUnit.Point, ((System.Byte)(0))));
ListViewItem listViewItem3 = new ListViewItem(new string[] {"Apple","h","j","n"}, -1, Color.Empty, Color.Lime, null);
ListViewItem listViewItem4 = new ListViewItem(new string[] {"Pear","y","u","i"}, -1, Color.Empty, Color.FromArgb(((System.Byte)(192)), ((System.Byte)(128)), ((System.Byte)(156))), null);
//Initialize the ListView control and add columns to it.
this.listView1 = new ListView();
// Set the initial sorting type for the ListView.
this.listView1.Sorting = SortOrder.None;
// Disable automatic sorting to enable manual sorting.
this.listView1.View = View.Details;
// Add columns and set their text.
this.listView1.Columns.Add(new ColumnHeader());
this.listView1.Columns[0].Text = "Column 1";
this.listView1.Columns[0].Width = 100;
listView1.Columns.Add(new ColumnHeader());
listView1.Columns[1].Text = "Column 2";
listView1.Columns.Add(new ColumnHeader());
listView1.Columns[2].Text = "Column 3";
listView1.Columns.Add(new ColumnHeader());
listView1.Columns[3].Text = "Column 4";
// Suspend control logic until form is done configuring form.
this.SuspendLayout();
// Add Items to the ListView control.
this.listView1.Items.AddRange(new ListViewItem[] {listViewItem1,
listViewItem2,
listViewItem3,
listViewItem4});
// Set the location and size of the ListView control.
this.listView1.Location = new Point(10, 10);
this.listView1.Name = "listView1";
this.listView1.Size = new Size(300, 100);
this.listView1.TabIndex = 0;
// Enable editing of the items in the ListView.
this.listView1.LabelEdit = true;
// Connect the ListView.ColumnClick event to the ColumnClick event handler.
this.listView1.ColumnClick += new ColumnClickEventHandler(ColumnClick);
// Initialize the form.
this.ClientSize = new Size(400, 400);
this.Controls.AddRange(new Control[] {this.listView1});
this.Name = "ListViewSortForm";
this.Text = "Sorted ListView Control";
// Resume layout of the form.
this.ResumeLayout(false);
}
// ColumnClick event handler.
private void ColumnClick(object o, ColumnClickEventArgs e)
{
// Set the ListViewItemSorter property to a new ListViewItemComparer
// object. Setting this property immediately sorts the
// ListView using the ListViewItemComparer object.
this.listView1.ListViewItemSorter = new ListViewItemComparer(e.Column);
}
[System.STAThreadAttribute()]
public static void Main()
{
Application.Run(new ListViewSortForm());
}
}
// Implements the manual sorting of items by columns.
class ListViewItemComparer : IComparer
{
private int col;
public ListViewItemComparer()
{
col = 0;
}
public ListViewItemComparer(int column)
{
col = column;
}
public int Compare(object x, object y)
{
return String.Compare(((ListViewItem)x).SubItems[col].Text, ((ListViewItem)y).SubItems[col].Text);
}
}
}
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Collections
Namespace ListViewSortFormNamespace
Public Class ListViewSortForm
Inherits Form
Private listView1 As ListView
Public Sub New()
' Create ListView items to add to the control.
Dim listViewItem1 As New ListViewItem(New String() {"Banana", "a", "b", "c"}, -1, Color.Empty, Color.Yellow, Nothing)
Dim listViewItem2 As New ListViewItem(New String() {"Cherry", "v", "g", "t"}, -1, Color.Empty, Color.Red, New Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular, GraphicsUnit.Point, CType(0, System.Byte)))
Dim listViewItem3 As New ListViewItem(New String() {"Apple", "h", "j", "n"}, -1, Color.Empty, Color.Lime, Nothing)
Dim listViewItem4 As New ListViewItem(New String() {"Pear", "y", "u", "i"}, -1, Color.Empty, Color.FromArgb(CType(192, System.Byte), CType(128, System.Byte), CType(156, System.Byte)), Nothing)
'Initialize the ListView control and add columns to it.
Me.listView1 = New ListView
' Set the initial sorting type for the ListView.
Me.listView1.Sorting = SortOrder.None
' Disable automatic sorting to enable manual sorting.
Me.listView1.View = View.Details
' Add columns and set their text.
Me.listView1.Columns.Add(New ColumnHeader)
Me.listView1.Columns(0).Text = "Column 1"
Me.listView1.Columns(0).Width = 100
listView1.Columns.Add(New ColumnHeader)
listView1.Columns(1).Text = "Column 2"
listView1.Columns.Add(New ColumnHeader)
listView1.Columns(2).Text = "Column 3"
listView1.Columns.Add(New ColumnHeader)
listView1.Columns(3).Text = "Column 4"
' Suspend control logic until form is done configuring form.
Me.SuspendLayout()
' Add Items to the ListView control.
Me.listView1.Items.AddRange(New ListViewItem() {listViewItem1, listViewItem2, listViewItem3, listViewItem4})
' Set the location and size of the ListView control.
Me.listView1.Location = New Point(10, 10)
Me.listView1.Name = "listView1"
Me.listView1.Size = New Size(300, 100)
Me.listView1.TabIndex = 0
' Enable editing of the items in the ListView.
Me.listView1.LabelEdit = True
' Connect the ListView.ColumnClick event to the ColumnClick event handler.
AddHandler Me.listView1.ColumnClick, AddressOf ColumnClick
' Initialize the form.
Me.ClientSize = New Size(400, 400)
Me.Controls.AddRange(New Control() {Me.listView1})
Me.Name = "ListViewSortForm"
Me.Text = "Sorted ListView Control"
' Resume layout of the form.
Me.ResumeLayout(False)
End Sub
' ColumnClick event handler.
Private Sub ColumnClick(ByVal o As Object, ByVal e As ColumnClickEventArgs)
' Set the ListViewItemSorter property to a new ListViewItemComparer
' object. Setting this property immediately sorts the
' ListView using the ListViewItemComparer object.
Me.listView1.ListViewItemSorter = New ListViewItemComparer(e.Column)
End Sub
End Class
' Implements the manual sorting of items by columns.
Class ListViewItemComparer
Implements IComparer
Private col As Integer
Public Sub New()
col = 0
End Sub
Public Sub New(ByVal column As Integer)
col = column
End Sub
Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer _
Implements IComparer.Compare
Return [String].Compare(CType(x, ListViewItem).SubItems(col).Text, CType(y, ListViewItem).SubItems(col).Text)
End Function
End Class
End Namespace
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(ListViewItem+ListViewSubItem[], String, ListViewGroup)
Belirtilen alt öğeleri, görüntüyü ve grubu ile sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(cli::array <System::Windows::Forms::ListViewItem::ListViewSubItem ^> ^ subItems, System::String ^ imageKey, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string imageKey, System.Windows.Forms.ListViewGroup group);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string? imageKey, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : System.Windows.Forms.ListViewItem.ListViewSubItem[] * string * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (subItems As ListViewItem.ListViewSubItem(), imageKey As String, group As ListViewGroup)
Parametreler
- subItems
- ListViewItem.ListViewSubItem[]
öğesinin ListViewItem.ListViewSubItem alt simgelerini ListViewItemtemsil eden bir nesne dizisi.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, nesneleri eklemeden ListViewItem önce oluşturduğunuzda ListViewItem.ListViewSubItem yararlıdır (örneğin, özel biçimlendirmeyi belirtmek veya alt öğeleri birden çok öğede kullanmak için). Ayrıca, bir öğenin ait olduğu grubu belirtmenize de olanak tanır.
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Şunlara uygulanır
ListViewItem(ListViewItem+ListViewSubItem[], Int32, ListViewGroup)
Öğenin simgesinin ListViewItem görüntü dizini konumu ve bir nesne dizisi ListViewItem.ListViewSubItem ile sınıfının yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar.
public:
ListViewItem(cli::array <System::Windows::Forms::ListViewItem::ListViewSubItem ^> ^ subItems, int imageIndex, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, int imageIndex, System.Windows.Forms.ListViewGroup group);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, int imageIndex, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : System.Windows.Forms.ListViewItem.ListViewSubItem[] * int * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (subItems As ListViewItem.ListViewSubItem(), imageIndex As Integer, group As ListViewGroup)
Parametreler
- subItems
- ListViewItem.ListViewSubItem[]
Öğenin alt maddelerini temsil eden tür ListViewItem.ListViewSubItem dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, nesneleri bir ListViewItem nesneye eklemeden önce oluşturduğunuzda ListViewItem.ListViewSubItem yararlıdır (örneğin, özel biçimlendirmeyi belirtmek veya alt öğeleri birden çok öğede kullanmak için). Ayrıca, bir öğenin ait olduğu grubu belirtmenize de olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String[], String, ListViewGroup)
Sınıfın ListViewItem yeni bir örneğini, belirtilen metin, görüntü ve grubu içeren alt sınıflarla başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, System::String ^ imageKey, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string[] items, string imageKey, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string[]? items, string? imageKey, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string[] * string * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageKey As String, group As ListViewGroup)
Parametreler
- items
- String[]
öğesinin alt öğeleri için metni temsil eden dize dizisi ListViewItem.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Şunlara uygulanır
ListViewItem(String[], Int32, ListViewGroup)
Öğenin simgesinin ListViewItem görüntü dizini konumu ve alt öğeleri temsil eden dize dizisiyle sınıfının yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar.
public:
ListViewItem(cli::array <System::String ^> ^ items, int imageIndex, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string[] items, int imageIndex, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string[]? items, int imageIndex, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string[] * int * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageIndex As Integer, group As ListViewGroup)
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String, String, ListViewGroup)
Belirtilen metin, görüntü ve grupla sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(System::String ^ text, System::String ^ imageKey, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string text, string imageKey, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string? text, string? imageKey, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string * string * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (text As String, imageKey As String, group As ListViewGroup)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
metninin ListViewItem metni 259 karakteri aşmamalıdır veya beklenmeyen davranışlar oluşabilir.
Şunlara uygulanır
ListViewItem(ListViewItem+ListViewSubItem[], String)
Belirtilen alt öğeleri ve görüntüyü kullanarak sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(cli::array <System::Windows::Forms::ListViewItem::ListViewSubItem ^> ^ subItems, System::String ^ imageKey);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string imageKey);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, string? imageKey);
new System.Windows.Forms.ListViewItem : System.Windows.Forms.ListViewItem.ListViewSubItem[] * string -> System.Windows.Forms.ListViewItem
Public Sub New (subItems As ListViewItem.ListViewSubItem(), imageKey As String)
Parametreler
- subItems
- ListViewItem.ListViewSubItem[]
Bir nesne dizisi ListViewItem.ListViewSubItem .
- imageKey
- String
'de görüntülenecek ListViewItemsahibin ListView içindeki ImageList görüntünün adı.
Açıklamalar
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
Şunlara uygulanır
ListViewItem(String, Int32, ListViewGroup)
Belirtilen öğe metni ve öğe simgesinin ListViewItem görüntü dizini konumuyla sınıfın yeni bir örneğini başlatır ve öğeyi belirtilen gruba atar.
public:
ListViewItem(System::String ^ text, int imageIndex, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string text, int imageIndex, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string? text, int imageIndex, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string * int * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (text As String, imageIndex As Integer, group As ListViewGroup)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
metninin ListViewItem metni 259 karakteri aşmamalıdır veya beklenmeyen davranışlar oluşabilir.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String[], ListViewGroup)
Sınıfın ListViewItem yeni bir örneğini alt öğeleri temsil eden dize dizisiyle başlatır ve öğeyi belirtilen gruba atar.
public:
ListViewItem(cli::array <System::String ^> ^ items, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string[] items, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string[]? items, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string[] * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), group As ListViewGroup)
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String[], String)
Belirtilen öğe ve alt metin ve görüntü ile sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, System::String ^ imageKey);
public ListViewItem (string[] items, string imageKey);
public ListViewItem (string[]? items, string? imageKey);
new System.Windows.Forms.ListViewItem : string[] * string -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageKey As String)
Parametreler
- items
- String[]
öğesinin altitemlerinin ListViewItemmetnini içeren bir dizi.
- imageKey
- String
'de görüntülenecek ListViewItemsahibin ListView içindeki ImageList görüntünün adı.
Açıklamalar
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
Şunlara uygulanır
ListViewItem(String[], Int32)
Öğenin simgesinin ListViewItem görüntü dizini konumu ve alt öğeleri temsil eden dize dizisiyle sınıfının yeni bir örneğini başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items, int imageIndex);
public ListViewItem (string[] items, int imageIndex);
public ListViewItem (string[]? items, int imageIndex);
new System.Windows.Forms.ListViewItem : string[] * int -> System.Windows.Forms.ListViewItem
Public Sub New (items As String(), imageIndex As Integer)
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String, ListViewGroup)
Belirtilen öğe metniyle sınıfının yeni bir örneğini ListViewItem başlatır ve belirtilen gruba atar.
public:
ListViewItem(System::String ^ text, System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (string text, System.Windows.Forms.ListViewGroup group);
public ListViewItem (string? text, System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : string * System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (text As String, group As ListViewGroup)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
metninin ListViewItem metni 259 karakteri aşmamalıdır veya beklenmeyen davranışlar oluşabilir.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String, String)
Belirtilen metin ve görüntüyle sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(System::String ^ text, System::String ^ imageKey);
public ListViewItem (string text, string imageKey);
public ListViewItem (string? text, string? imageKey);
new System.Windows.Forms.ListViewItem : string * string -> System.Windows.Forms.ListViewItem
Public Sub New (text As String, imageKey As String)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
- imageKey
- String
'de görüntülenecek ListViewItemsahibin ListView içindeki ImageList görüntünün adı.
Açıklamalar
imageKey
parametresi, sahip olma ListView denetimiyle ilişkilendirilmiş olan ve özelliğiyle ImageList erişilebilen bir görüntü ImageList belirtir.
metninin ListViewItem metni 259 karakteri aşmamalıdır veya beklenmeyen davranışlar oluşabilir.
Şunlara uygulanır
ListViewItem(String, Int32)
Belirtilen öğe metni ve öğe simgesinin ListViewItem görüntü dizini konumuyla sınıfın yeni bir örneğini başlatır.
public:
ListViewItem(System::String ^ text, int imageIndex);
public ListViewItem (string text, int imageIndex);
public ListViewItem (string? text, int imageIndex);
new System.Windows.Forms.ListViewItem : string * int -> System.Windows.Forms.ListViewItem
Public Sub New (text As String, imageIndex As Integer)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
Açıklamalar
metninin ListViewItem metni 259 karakteri aşmamalıdır veya beklenmeyen davranışlar oluşabilir.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(SerializationInfo, StreamingContext)
Belirtilen serileştirme bilgileri ve akış bağlamı ile sınıfının yeni bir örneğini ListViewItem başlatır.
protected:
ListViewItem(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ListViewItem (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Windows.Forms.ListViewItem : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Windows.Forms.ListViewItem
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parametreler
- info
- SerializationInfo
SerializationInfo Başlatılacak ile ilgili ListViewItem bilgileri içeren bir.
- context
- StreamingContext
StreamingContext Bir serileştirilmiş akışın kaynak hedefini ve bağlam bilgilerini gösteren.
Şunlara uygulanır
ListViewItem(ListViewGroup)
sınıfının yeni bir örneğini ListViewItem başlatır ve belirtilen gruba atar.
public:
ListViewItem(System::Windows::Forms::ListViewGroup ^ group);
public ListViewItem (System.Windows.Forms.ListViewGroup group);
public ListViewItem (System.Windows.Forms.ListViewGroup? group);
new System.Windows.Forms.ListViewItem : System.Windows.Forms.ListViewGroup -> System.Windows.Forms.ListViewItem
Public Sub New (group As ListViewGroup)
Parametreler
- group
- ListViewGroup
ListViewGroup Öğenin atanacak öğesi.
Açıklamalar
Oluşturucunun bu sürümü, bir öğenin ait olduğu grubu belirtmenize olanak tanır.
Not
ListView grupları yalnızca Windows XP ve Windows Server 2003 ailesinde (Windows XP Home Edition, Windows XP Professional, Windows Server 2003) kullanılabilir. Daha fazla bilgi için genel bakış konusuna ListViewGroup bakın.
Ayrıca bkz.
Şunlara uygulanır
ListViewItem(String[])
Sınıfın ListViewItem yeni bir örneğini, alt öğeleri temsil eden bir dize dizisiyle başlatır.
public:
ListViewItem(cli::array <System::String ^> ^ items);
public ListViewItem (string[] items);
public ListViewItem (string[]? items);
new System.Windows.Forms.ListViewItem : string[] -> System.Windows.Forms.ListViewItem
Public Sub New (items As String())
Parametreler
- items
- String[]
Yeni öğenin alt maddelerini temsil eden dize dizisi.
Şunlara uygulanır
ListViewItem(String)
Belirtilen öğe metniyle sınıfının yeni bir örneğini ListViewItem başlatır.
public:
ListViewItem(System::String ^ text);
public ListViewItem (string text);
public ListViewItem (string? text);
new System.Windows.Forms.ListViewItem : string -> System.Windows.Forms.ListViewItem
Public Sub New (text As String)
Parametreler
- text
- String
Öğe için görüntülenecek metin. Bu, 259 karakteri aşmamalıdır.
Açıklamalar
metninin ListViewItem 259 karakteri aşmaması gerekir veya beklenmeyen davranışlar oluşabilir.
Şunlara uygulanır
ListViewItem(ListViewItem+ListViewSubItem[], Int32)
Öğenin simgesinin ListViewItem görüntü dizini konumu ve bir nesne dizisi ile sınıfının yeni bir örneğini ListViewItem.ListViewSubItem başlatır.
public:
ListViewItem(cli::array <System::Windows::Forms::ListViewItem::ListViewSubItem ^> ^ subItems, int imageIndex);
public ListViewItem (System.Windows.Forms.ListViewItem.ListViewSubItem[] subItems, int imageIndex);
new System.Windows.Forms.ListViewItem : System.Windows.Forms.ListViewItem.ListViewSubItem[] * int -> System.Windows.Forms.ListViewItem
Public Sub New (subItems As ListViewItem.ListViewSubItem(), imageIndex As Integer)
Parametreler
- subItems
- ListViewItem.ListViewSubItem[]
Öğenin alt maddelerini temsil eden tür ListViewItem.ListViewSubItem dizisi.
- imageIndex
- Int32
öğesini içeren ile ListView ilişkili içindeki ImageList görüntünün sıfır tabanlı dizini.
Açıklamalar
Oluşturucunun bu sürümü, nesneleri bir ListViewItem öğesine eklemeden önce oluşturduğunuzda ListViewItem.ListViewSubItem (örneğin, özel biçimlendirmeyi belirtmek veya alt öğeleri birden çok öğede kullanmak için) yararlıdır.