Installation

You can download the IntegralUI for Blazor product suite from Downloads page.

What's Included
  • Library files - located in /bin directory
  • Samples - you can find a quick start application in /quickstart directory
  • Resources - images, icons, cursors and other resources can be found in /resources directory
  • Documentation - available online, accessible from here: Online Help
  • License - licensing information
  • ReadMe file - release notes
How to Install from NuGet

You can install the IntegralUI for Blazor package directly from The NuGet Library.

This option doesn't include the Quick Start application project that contains the sample code for each component. In order to get the sample project, download it from here: IntegralUI for Blazor or from GitHub.

How to Install from GitHub

The IntegralUI for Blazor is also available on GitHub.

How to Install from NPM

You can download and install the IntegralUI for Blazor from NPM.

How to Install from a Local Folder
  • First download the latest version of IntegralUI for Blazor component library from Downloads page.

  • Copy/Paste the NuGet package from /bin folder to a referencing folder (the folder from where you are referencing external or vendor libraries) in your project. The /resources folder is optional.

  • Install the NuGet package for IntegralUI library from a local folder.

    1. Open your project
    2. From Solution Explorer right-click on Dependencies option and select "Manage NuGet Packages..."
    3. In top-right corner click on Tools icon to create new package source
    4. Create a new package source by licking on + tool button
    5. Under Name field enter IntegralUI and under Source field click on browse button to select your referencing folder and click Update button and press OK
      • The referencing folder should contain the NuGet package for IntegralUI library, the one copied from /bin folder (see first line above)
    6. In NuGet package manager select the IntegralUI package source from the dropdown list (from top-right corner)
    7. Select the Browse tab to see all available IntegraUI versions
    8. Install the latest version
    9. Close the NuGet package manager

Now you can use all components available in IntegralUI library. There are several namespaces that you can import:

  • IntegralUI.Components
  • IntegralUI.Data
  • IntegralUI.Events
  • IntegralUI.Interfaces
  • IntegralUI.Services
  • IntegralUI.Styling

All components are located under IntegralUI.Components namespace.

Licensing

To unlock the product and remove Trial window from showing, insert your license key in code before application runs. Open the Program.cs file in your project and use the License method, like this:

    IntegralUI.Licensing.License("YOUR LICENSE KEY");

    // . . .

    await builder.Build().RunAsync();
                    
Quick Start

There is a demo application with source code that contains samples for each component included in the IntegralUI for Blazor product package. It can help you to get started quickly with learning about the components and write tests immediatelly.

The Quick Start project is available under /quickstart in product installation folder.

The application will start displaying the main window with navigation bar that includes links to all components included. Each component window contains a demo and description about the component functionality. You can checkout the sample source code (located under /pages subfolder) for more information on the sample and component used.