Create a Simple Custom Action Using Visual Studio 2010

【转】http://www.johnchapman.name/sharepoint-2010-create-a-simple-custom-action-using-visual-studio-2010/

Visual Studio 2010 has added a multitude of new features to make custom development on SharePoint 2010 much simpler that it was previously. Though Visual Studio 2010 does not include a simple wizard or other simpler process for creating Custom Actions, we can still take advantage of the simple packaging, debugging, and deployment features available for SharePoint 2010. In addition, Custom Actions point to custom application pages or other custom functions contained in the same Visual Studio solution.

You will need a development environment with SharePoint Foundation 2010 or SharePoint Server 2010 as well as Visual Studio 2010. Developing for SharePoint 2010 in Visual Studio 2010 requires you to run them both on the same machine (not your production server however). For information on setting up your development environment, see http://msdn.microsoft.com/en-us/library/ee554869.aspx.

To get started:

  • Create an “Empty SharePoint Project” in Visual Studio 2010:
    • Be sure to set the target framework to “.NET Framework 3.5″. SharePoint 2010 doesn’t support.NET Framework 4.0.
    • You have your choice of Visual Basic or Visual C#. I prefer C#, so all of my code examples will be in C#.
  • Specify the local site you are using for debugging (the one running on the local machine) and whether the solution will be sandboxed or a farm solution:
    • Custom Actions are available in Sandboxed Solutions, however, the available functionality will be limited.
  • Visual Studio does not have a template for Custom Actions. Instead you will have to create an Empty Element:
    • In the Solution Explorer, right click your solution name and Add > New Item:
  • Select Empty Element and provide your action with a name. The name is simply the file name, not how it will actually show up in SharePoint.

Now you have an empty Elements.xml file to create your Custom Action with:

1<?xml version="1.0" encoding="utf-8"?>
3</Elements>

For this example, paste the following in place of the existing content:

1<?xml version="1.0" encoding="utf-8"?>
3<CustomAction Id="SiteActionsToolbar" GroupId="SiteActions" Location="Microsoft.SharePoint.StandardMenu" Sequence="1000" Title="Bing">
4<UrlAction Url="http://www.bing.com"/>
5</CustomAction>
6</Elements>

This simple Custom Action will add a link to Bing on the Site Actions menu. Now deploy your solution to SharePoint to test it:

  • Right click the Solution Name in the Solution Explorer and select Deploy:
  • Visual Studio will indicate when it has completed building and deploying the solution to your local SharePoint site:
  • Now navigate to your SharePoint site in a web browser. Under the Site Actions you will now have a link to Bing:

That is how a simple Custom Action is created. In upcoming articles I will demonstrate how to add Custom Actions to different parts of the SharePoint Interface, such as the Ribbon and Site Settings.

转载于:https://www.cnblogs.com/ahjxxy/archive/2011/08/22/2148972.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值