Welcome to LightSwitch Desktop Edition > OLAP for LightSwitch Overview > Programming OLAP for LightSwitch > Building a Custom User Interface > Adding Assembly References |
In the designer toolbar, click the Write Code button to switch to code view. Add references to the following Silverlight assemblies:
Add the following using statements to the code:
C# |
Copy Code
|
---|---|
using C1.Olap; using C1.Silverlight.Olap; |
Add the following using statement to your code to enable access to the Dispatcher collection:
C# |
Copy Code
|
---|---|
using Microsoft.LightSwitch.Threading;
|