通过


ImageList 构造函数

定义

初始化 ImageList 类的新实例。

重载

名称 说明
ImageList()

使用默认值ColorDepth初始化类的新实例ImageListImageSize以及 TransparentColor

ImageList(IContainer)

初始化类的新实例 ImageList ,将其与容器相关联。

ImageList()

Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs

使用默认值ColorDepth初始化类的新实例ImageListImageSize以及 TransparentColor

public:
 ImageList();
public ImageList();
Public Sub New ()

示例

下面的代码示例演示如何构造一个 ImageList、向属性添加图像 Images 、设置 ImageSize 属性以及使用 Draw 该方法。 若要运行此示例,请将它置于包含名为 按钮 Button1的窗体中。 该示例假定存在 FeatherTexture.bmpGone Fishing.bmp c:\Windows\。 如果系统上不存在位图或位于其他位置,请相应地更改该示例。

internal:
   System::Windows::Forms::ImageList^ ImageList1;

private:

   // Create an ImageList Object, populate it, and display
   // the images it contains.
   void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      
      // Construct the ImageList.
      ImageList1 = gcnew ImageList;
      
      // Set the ImageSize property to a larger size 
      // (the default is 16 x 16).
      ImageList1->ImageSize = System::Drawing::Size( 112, 112 );
      
      // Add two images to the list.
      ImageList1->Images->Add( Image::FromFile( "c:\\windows\\FeatherTexture.bmp" ) );
      ImageList1->Images->Add( Image::FromFile( "C:\\windows\\Gone Fishing.bmp" ) );
      
      // Get a Graphics object from the form's handle.
      Graphics^ theGraphics = Graphics::FromHwnd( this->Handle );
      
      // Loop through the images in the list, drawing each image.
      for ( int count = 0; count < ImageList1->Images->Count; count++ )
      {
         ImageList1->Draw( theGraphics, Point(85,85), count );
         
         // Call Application.DoEvents to force a repaint of the form.
         Application::DoEvents();
         
         // Call the Sleep method to allow the user to see the image.
         System::Threading::Thread::Sleep( 1000 );

      }
   }
internal System.Windows.Forms.ImageList ImageList1;

// Create an ImageList Object, populate it, and display
// the images it contains.
private void Button1_Click(System.Object sender, 
    System.EventArgs e)
{

    // Construct the ImageList.
    ImageList1 = new ImageList();

    // Set the ImageSize property to a larger size 
    // (the default is 16 x 16).
    ImageList1.ImageSize = new Size(112, 112);

    // Add two images to the list.
    ImageList1.Images.Add(
        Image.FromFile("c:\\windows\\FeatherTexture.bmp"));
    ImageList1.Images.Add(
        Image.FromFile("C:\\windows\\Gone Fishing.bmp"));

    // Get a Graphics object from the form's handle.
    Graphics theGraphics = Graphics.FromHwnd(this.Handle);

    // Loop through the images in the list, drawing each image.
    for(int count = 0; count < ImageList1.Images.Count; count++)
    {
        ImageList1.Draw(theGraphics, new Point(85, 85), count);

        // Call Application.DoEvents to force a repaint of the form.
        Application.DoEvents();

        // Call the Sleep method to allow the user to see the image.
        System.Threading.Thread.Sleep(1000);
    }
}
Friend WithEvents ImageList1 As System.Windows.Forms.ImageList

' Create an ImageList Object, populate it, and display
' the images it contains.
Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click

    ' Construct the ImageList.
    ImageList1 = New ImageList

    ' Set the ImageSize property to a larger size 
    ' (the default is 16 x 16).
    ImageList1.ImageSize = New Size(112, 112)

    ' Add two images to the list.
    ImageList1.Images.Add(Image.FromFile _
        ("c:\windows\FeatherTexture.bmp"))
    ImageList1.Images.Add _
        (Image.FromFile("C:\windows\Gone Fishing.bmp"))

    Dim count As System.Int32

    ' Get a Graphics object from the form's handle.
    Dim theGraphics As Graphics = Graphics.FromHwnd(Me.Handle)

    ' Loop through the images in the list, drawing each image.
    For count = 0 To ImageList1.Images.Count - 1
        ImageList1.Draw(theGraphics, New Point(85, 85), count)

        ' Call Application.DoEvents to force a repaint of the form.
        Application.DoEvents()

        ' Call the Sleep method to allow the user to see the image.
        System.Threading.Thread.Sleep(1000)
    Next
End Sub

注解

下表显示了实例 ImageList的初始属性值。

物品 说明
ColorDepth 在 .NET Framework 和 .NET (Core) 版本中,通过 .NET 7,默认值为 Depth8Bit。 在 .NET 8 及更高版本中,默认值为 Depth32Bit.
ImageSize 默认值为 Size 高度和宽度为 16 到 16 的对象。
TransparentColor 默认值为 Transparent

适用于

ImageList(IContainer)

Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs
Source:
ImageList.cs

初始化类的新实例 ImageList ,将其与容器相关联。

public:
 ImageList(System::ComponentModel::IContainer ^ container);
public ImageList(System.ComponentModel.IContainer container);
new System.Windows.Forms.ImageList : System.ComponentModel.IContainer -> System.Windows.Forms.ImageList
Public Sub New (container As IContainer)

参数

container
IContainer

实现 IContainer 要与此实例 ImageList关联的对象。

注解

构造ImageList函数使你能够与任何Container对象关联ImageList。 通过将类似项关联ImageList在一起,可以移交对生存期ImageList的控制。Container 如果在应用程序中使用多个组件,并且想要同时释放所有这些组件,这非常有用。 例如,如果将 a、a 和 a /> 相关联,则调用容器也会强制处置所有这些组件。

适用于