SharePoint リボンにカスタム アクション ボタンを作成し、そのボタンから C# コード ビハインドを呼び出そうとしています。これを行う方法についての良い詳細を見つけることができませんでした。誰かがこれを行う方法を知っているか、これを行う方法に関する良い情報を持っていますか? それが役立つかどうかはわかりませんが、これは私のカスタムアクションボタンのコードです. ありがとう!
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction
Id="CustomRibbonButton"
RegistrationId="101"
RegistrationType="List"
Location="CommandUI.Ribbon"
Sequence="5"
Title="Move Documents">
<CommandUIExtension>
<CommandUIDefinitions>
<CommandUIDefinition Location="Ribbon.Documents.Manage.Controls._children">
<Button
Id="Ribbon.Documents.New.MoveButton"
Alt="Move Documents"
Sequence="5"
Command="Move_Button"
Image32by32="/_layouts/images/Skynet/WinEarth32x32.png"
Image16by16="/_layouts/images/Skynet/WinEarth16x16.png"
LabelText="Move Documents"
TemplateAlias="o1" />
</CommandUIDefinition>
</CommandUIDefinitions>
<CommandUIHandlers>
<CommandUIHandler
Command="Move_Button"
CommandAction="javascript:alert('SharePoint 2010 makes me angry!');" />
</CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
</Elements>