Click here to Skip to main content
15,881,588 members
Articles / Desktop Programming / Windows Forms

SPList Image and SPFile Icon

Rate me:
Please Sign up or sign in to vote.
4.83/5 (4 votes)
2 Apr 2010CPOL1 min read 22.9K   3   5
Take advantage of SPList.ImageUrl and SPFile.IconUrl to improve the user experience of WinForm apps for SharePoint.

If you ever wanted to create a WinForms app for SharePoint that displays or interacts with lists, document libraries and files, then taking advantage of the SPList.ImageUrl and SPFile.IconUrl would help improve the user experience for your app.

Below is an app that displays all the webs, lists, document libraries and files in a selected site collection.

We can improve this a little bit by adding icons (taken from TEMPLATE\IMAGES folder on a SharePoint installation) for some of the nodes, as follows:

However, this is not good enough since we'll have all lists with the same icon, all doc libs with the same icon and so on… Here is the same app taking advantage of the list image URL and file icon URL.

For the list or document library, this is done by using the SPList.ImageUrl attribute. Here is how the tree node was added:

C#
TreeNode listNode = parentNode.Nodes.Add(list.Title);
listNode.SelectedImageIndex = listNode.ImageIndex = 
		GetImage(GetImageFullPath(list.ImageUrl));

For the file, this is done by using the SPFile.IconUrl attribute. Here is how the tree node was added:

C#
TreeNode fileNode = parentNode.Nodes.Add(file.Name);
fileNode.SelectedImageIndex = fileNode.ImageIndex = 
	GetImage(GetImageFullPath(file.IconUrl));

The GetImageFullPath method simply gets the full path of the image:

C#
/// <summary>
/// Gets the SharePoint full path from the relative path
/// </summary>
/// <param name="relativePath"></param>
/// <returns></returns>
private static string GetImageFullPath(string relativePath)
{
    //  Get image name
    string imageName = Path.GetFileName(relativePath);

    //  Get SharePoint IMAGES folder path
    string fullPath = SPUtility.GetGenericSetupPath(@"TEMPLATE\IMAGES");

    return Path.Combine(fullPath, imageName);
}

Given that now we have the full file system path to the image, all we have to do is create an image from the file path, then add it to the ImageList of the TreeView. The GetImage() method below does the job:

C#
/// <summary>
/// Gets the image of the sp element from specified URL
/// </summary>
/// <param name="url"></param>
/// <returns></returns>
private int GetImage(string url)
{
    //  Get image index from the Image List
    int imageIndex = spImageList.Images.IndexOfKey(url);

    //  Image is not in the list, so add it
    if (imageIndex == -1)
    {
        //  Get the image from specified path
        Image image = Image.FromFile(url);

        //  Add the image to the image list
        spImageList.Images.Add(url, image);

        //  Get its index
        imageIndex = spImageList.Images.Count - 1;
    }

    return imageIndex;
}

Here is how the final app looks like. Click on the image below to download the source and EXE.


Filed under: SharePoint Tagged: IconUrl, ImageUrl, SPDocumentLibrary, SPFile, SPList
This article was originally posted at http://mycodelog.com/2010/03/18/spicon

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
https://open-gl.com

Comments and Discussions

 
GeneralMy vote of 5 Pin
Nikam Dilip27-Sep-12 5:48
Nikam Dilip27-Sep-12 5:48 
very useful info...thanks

But how can i get the folder icon image url programmatically ?
GeneralI am started in C# Pin
engwaleed024-Mar-10 12:23
engwaleed024-Mar-10 12:23 
GeneralRe: I am started in C# Pin
Ali BaderEddin24-Mar-10 14:51
Ali BaderEddin24-Mar-10 14:51 
GeneralNice article Pin
Mohd Arshad Malik19-Mar-10 10:26
Mohd Arshad Malik19-Mar-10 10:26 
GeneralRe: Nice article Pin
Ali BaderEddin19-Mar-10 11:35
Ali BaderEddin19-Mar-10 11:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.