Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I started reading the Pro Business Applications with Silverlight 4 and I'm having the following problem here with my visual studio 2010

I can't find the data sources tab page as mentioned here:

When you open the Data Sources window in Visual Studio, you will find that a data source has already been created for each domain context created by RIA Services in the Silverlight project, with the entities that they expose beneath them (as shown in Figure 6-2). Dragging and dropping one of these onto your design surface will create both a DomainDataSource control and a bound control to display the data.

I know that the Data Sources window and Data menu are intentionally disabled in Websites and Web Application Projects but my project is a Silverlight business application.

Can someone tell where i can find this window or what should i do to create the DomainDataSource control and the bound control?

Thanks!

share|improve this question
Are you saying the 'Data' menu isn't visible? – Steven Jeuris Jan 17 '12 at 15:38

3 Answers

up vote 5 down vote accepted

If you have MainWindow.xaml open, the DataSources tab is normally right next to the Toolbox tab.

enter image description here

If it does not appear there, go to View -> Toolbars, and turn on the Data Design toolbar. Click the Show Data Sources button.

enter image description here

Or just use Shift + Alt + D

share|improve this answer
1  
Ohhh, you even made some screenshots for me! ^^ thx! – ThdK Jan 18 '12 at 7:52

OK, i got a workaround. For some reason, it only shows up if you do a Silverlight project. So I started a blank solution, added a silverlight project. Bingo - there is the Data Source window. Now, add whatever project you really need.

share|improve this answer

When I create an empty project, I am able to access Data Sources as follows:

  • Select a project in the solution explorer. (Not a solution!)
  • The 'Data' menu on the menu bar now allows you to access the data sources for this project, along with other Data Source related options.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.