Domanda

Currently I have created a custom Picture User-control, and retrieving images from Picture Library,.

Now I'm trying to create Picture Library from Visual Studio, means Picture Library must be created from solution.

How can this be done?

È stato utile?

Soluzione 2

After some R&D Found Artical SharePoint 2013 Custom Picture Library Creation & Deployment

All My requirments Covered in above artical

Altri suggerimenti

You can create in two ways. One using list definition (xml) files or using Object Model.

Below is a snippet to create library using object model

SPWeb web = SPContext.Current.Web; //or create SPWeb object
web.Lists.Add("LibName", "Description", SPListTemplateType.PictureLibrary);
web.QuickLaunchEnabled = true; //false to not display in left nav
web.Update();

You can add this code inside a feature receiver.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top