Jetbrains Rider + Visual Studio WPF
Asked Answered
P

1

16

I'm about to have a project with C# again. As I love using JetBrains IDEs, I came along Rider. The main problem for me is that I need a Windows Forms or WPF Designer for the GUI.

Is there any external software available for it or does anybody know a convenient work pipeline to use Visual Studio only for WPF/WinForms and Rider as code IDE?

Politicize answered 5/8, 2016 at 14:35 Comment(0)
T
19

There's no real integration between the two IDEs. As far as I know, Rider detects file changes the same way as Visual Studio, so if you really want to build the UI with Visual Studio and do the rest using Rider, you can do it with quite a smooth workflow.

Also, it's worth it to learn to write WPF UI code by hand. Nowadays, I mostly write my UI code by hand instead of using the designer. With Windows Forms applications, it's different since editing the *.designer.cs files can be a bit of a pain by hand. It's doable though.


Update (04/2018): Rider 2018.1 now includes a XAML preview tool for WPF projects. It's still under active development and the preview window is non-interactive, but it's certainly better than nothing.

Timi answered 5/8, 2016 at 18:10 Comment(2)
Would it preferable to use blend to write the WPF and use rider for the code behind?Sundown
I haven't even launched Blend in a decade! Had to look that up, where does the time go?Seedling

© 2022 - 2024 — McMap. All rights reserved.