Frage

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?

War es hilfreich?

Lösung 2

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

All My requirments Covered in above artical

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit sharepoint.stackexchange
scroll top