Add Image in an ImageList to a LinkLabel : LinkLabel « GUI Windows Forms « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » GUI Windows Forms » LinkLabel 
23.26.6.Add Image in an ImageList to a LinkLabel
Add Image in an ImageList to a LinkLabel
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Collections;

public class ImageLists : Form
{
  ImageList imgList;
  Label lbl;
  LinkLabel lnk;
  Button btn;

  public ImageLists()
  {
       Size = new Size(300,300);

    imgList = new ImageList();
    Image img;

    String[] arFiles = {"1.ico","2.ico","3.ico"};


    for (int i = 0; i < arFiles.Length; i++)
    {
      img = Image.FromFile(arFiles[i]);
      imgList.Images.Add(img);
    }

    imgList.ImageSize = new Size(3232);


    lbl = new Label();
       lbl.Parent = this;
       lbl.Text = "Label";
       lbl.Location = new Point(0,0);
       lbl.Size = new Size(lbl.PreferredWidth + imgList.ImageSize.Width, 
      imgList.ImageSize.Height + 10);
       lbl.BorderStyle = BorderStyle.Fixed3D;
    lbl.ImageList = imgList;
    lbl.ImageIndex = 0;
    lbl.ImageAlign = ContentAlignment.MiddleRight;

       int yDelta = lbl.Height + 10;
     
       lnk = new LinkLabel();
       lnk.Parent = this;
       lnk.Text = "LinkLabel";
       lnk.Size = new Size(lnk.PreferredWidth + imgList.ImageSize.Width, 
      imgList.ImageSize.Height + 10);
       lnk.Location = new Point(0, yDelta);
    lnk.ImageList = imgList;
    lnk.ImageIndex = 0;
    lnk.ImageAlign = ContentAlignment.MiddleRight;

    btn = new Button();
    btn.Parent = this;
    btn.ImageList = imgList;
    btn.ImageIndex = imgList.Images.Count - 1;
    btn.Location = new Point(0* yDelta);
    btn.Size = new Size(* imgList.ImageSize.Width, 
              * imgList.ImageSize.Height);


    lbl.ImageIndex = 1;
    lnk.ImageIndex = 0;
    btn.ImageIndex = 2;

  }

  static void Main() 
  {
      Application.Run(new ImageLists());
  }

}
23.26.LinkLabel
23.26.1.LinkLabels: Text property and LinkAreaLinkLabels: Text property and LinkArea
23.26.2.LinkLabels: Add a linkLinkLabels: Add a link
23.26.3.LinkLabels: use generic Add and generic handlerLinkLabels: use generic Add and generic handler
23.26.4.LinkLabels: multiple links and generic handlerLinkLabels: multiple links and generic handler
23.26.5.LinkLabels: link to text fileLinkLabels: link to text file
23.26.6.Add Image in an ImageList to a LinkLabelAdd Image in an ImageList to a LinkLabel
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.