4

Is there a way in Visual Studio to easily edit blazor web pages ? For now, I code everything by hand !

It is very time consuming ! For each change I have to rebuild, restart, etc... I've spent 3 days to create a nice web page, instead of hours !

Any idea ? How do you do ?

Thanks

ClubberLang
  • 1,624
  • 3
  • 21
  • 45
  • There is no WYSIWYG for Blazor that I'm aware of, but you dont need to stop rebuild and start the project again. Try running dotnet watch run and then starting with Ctrl F5, which you will lose debugging but when you make changes you wont have to restart the project. When designing it makes for a much faster development experience. There is work to make this a better process which you can follow here: https://github.com/dotnet/aspnetcore/issues/5456 – Kyle Jan 10 '20 at 18:51

2 Answers2

7

There is a free version of Radzen.com

Michael Washington
  • 2,744
  • 20
  • 29
  • As for 2023 they created a new tool even better than the original. Radzen Blazor Studio. I use it for initial scafolding of my razor pages and then I continue editing code in Visual Studio. https://www.radzen.com/blazor-studio/ – Jose V. Garcia Aug 16 '23 at 15:17
0

No designer is available for blazor, and to my knowledge this is also not planned.

To speedup your development workflow you could use hot reloading. Check this: Is there any hot reload for blazor server-side?

Flores
  • 8,226
  • 5
  • 49
  • 81