|
|
(27 intermediate revisions by the same user not shown) |
Line 20: |
Line 20: |
| === MOSS & Silverlight === | | === MOSS & Silverlight === |
| * [http://blogs.msdn.com/andreww/archive/2009/03/12/silverlight-web-part-in-sharepoint.aspx Silverlight Web Part in SharePoint (blogs.msdn)] | | * [http://blogs.msdn.com/andreww/archive/2009/03/12/silverlight-web-part-in-sharepoint.aspx Silverlight Web Part in SharePoint (blogs.msdn)] |
− |
| |
− | === SharePoint 2010 Resources ===
| |
− | * [http://mssharepointdeveloper.com/ mssharepointdeveloper.com]
| |
− | * [http://msdn.microsoft.com/en-us/library/dd776256.aspx SharePoint 2010 MSDN Reference pages]
| |
− | * [http://msdn.microsoft.com/en-au/sharepoint/ee514561.aspx SharePoint 2010 (Beta) Developer Center]
| |
− | * [http://code.msdn.microsoft.com/sps2010deprecated Microsoft SharePoint Server 2010: Deprecated Types and Methods]
| |
− | * [http://visualstudiomagazine.com/articles/2009/10/29/sharepoint-2010-dev-center-readies-bcs-resources.aspx SharePoint 2010 Dev Center Ramps Up, Adds BCS Resources (Visual Studio Magazine)]
| |
− | * [http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx Setting Up the Development Environment for SharePoint Server (MSDN, for SP2010) http://msdn.microsoft.com/en-us/library/ee554869(office.14).aspx]
| |
− | * [http://blogs.msdn.com/arpans/archive/2009/12/02/sharepoint-2010-training.aspx SharePoint 2010 Training (Arpan Shah's blogs.msdn.com)]
| |
− | * [http://www.microsoft.com/downloads/details.aspx?FamilyID=cffb14e8-88a9-43bd-87aa-4792ab60d320&displaylang=en SharePoint 2010: Professional Developer Evaluation Guide and Walkthroughs (Microsoft Document Download)]
| |
− | * [http://wssv4faq.mindsharp.com/Lists/v4FAQ/V%20Books.aspx SharePoint 2010 Books list]
| |
− |
| |
− | * [http://www.toddbaginski.com/blog/archive/2009/11/20/which-sharepoint-2010-site-template-is-right-for-me.aspx Which SharePoint 2010 Site Template Is Right For Me?]
| |
− |
| |
− | === SharePoint 2010 & Silverlight ===
| |
− | * [http://bryantlikes.com/GettingStartedWithSilverlightAndSharePoint2010.aspx Getting Started With Silverlight and SharePoint 2010]
| |
− | * [http://www.sharepointkings.com/2009/07/understanding-and-working-with-web-part.html Modify WebPart menu (Understanding and working with Web Part Verbs)]
| |
− | * Turn on the Developer Dashboard by running the following stsadm command:
| |
− | <code>
| |
− | stsadm -o setproperty -pn developer-dashboard -pv OnDemand
| |
− | </code>
| |
− | * In VS2010, can make the following changes to
| |
− | ** Elements.xml: change the <pre><Property Name="Group" Value="Custom" /></pre> to something other than Custom.
| |
− | ** Webpart.webpart (webPartIcon is 16x16):
| |
− | <pre>
| |
− | <property name="ChromeType" type="chrometype">TitleAndBorder</property>
| |
− | <property name="CatalogIconImageUrl" type="string">_layouts/images/ContosoWebParts/WebPartIcon.gif</property>
| |
− | <property name="TitleIconImageUrl" type="string">_layouts/images/ContosoWebParts/WebPartIcon.gif</property>
| |
− | </pre>
| |
− | ** Elements.xml, modify the URL attribute of File element to change the .webpart file name to ensure that it is unique. Do this by prepending the text value of "ContosoWebParts_" (ie Feature project name) to the beginning of the URL property value.
| |