Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.36 KB

adding-assembly-to-a-visual-studio-project.adoc

File metadata and controls

42 lines (34 loc) · 1.36 KB

Adding an Assembly to a Visual Studio Project

The {ProductName} product offers full support for Microsoft® Visual Studio®. To use the controls in Visual Studio, you simply need to add the assemblies as references to your Microsoft® {PlatformName} project and add assembly references to your XAML file.

To add the assemblies to your project and reference them in your XAML file:

  1. Create a {PlatformName} project in Visual Studio.
    Getting Started Adding Assembly to Visual Studio Project 00b

  1. From the Solution Explorer pane, right-click the References folder, select Add Reference…​ menu item.
    Getting Started Adding Assembly to Visual Studio Project 01

  1. Browse to the {ProductName} assemblies you want to use in your project.

  1. Open the XAML file to which you want to add Infragistics controls.

  1. Add the Infragistics XML schema declaration to the UserControl’s opening tag.
    In XAML:

<UserControl
  xmlns:ig="http://schemas.infragistics.com/xaml">
</UserControl>