Applications
Radzen Blazor Studio is all about developing Blazor applications fast. So let’s get to it!
Create new application
Radzen Blazor Studio can create Blazor Web applications that support .NET 8 or .NET 9. You need to install the .NET 8 SDK too if want to create apps that target it.
All applications use the Radzen.Blazor component library.
- To create a new application click the ‘+’ button in the bottom left corner of Radzen Blazor Studio. It starts the New application wizard.
- Enter a name for your application. The name specifies the solution filename and root namespace.
- Pick a rendering mode. All interactive rendering modes are supported - Server, WebAssembly and Auto. Interactivity is enabled globally.
- Choose a directory where the application will exist.
- Click Finish.
- Run the application to see the final result in your browser.
Note If you want to create a vanilla application (without third party components) use the dotnet CLI e.g.
dotnet new blazor
Open existing application
To open a new application click the Open button in the bottom right corner and pick the .sln
or .csproj
file of your application.