让VS2019支持.NET Core WinForms和WPF设计器的临时办法(比微软给出的办法更方便)...

参考以下代码片段,给项目添加NET Framework目标框架,切换到NET472运行时重新生成项目,然后打开设计器界面。
如果遇到设计器报错,尝试以NET472运行时为目标重新生成项目,并重新打开VS。

netcore3-winform-designer
netcore3-wpf-designer

Design in .NET Framework target, publish in .NET Core 3.

WinForm



  
    WinExe
    net472;netcoreapp3.0
    true
    7.3
  
  
    
    
    
    
    
    
    
    
    
    
    
  
  
    
    
      Form
    
  

WPF



  
    WinExe
    net472;netcoreapp3.0
    true
  
  
    
    
    
    
    
    
    
    
    
      4.0
    
    
    
    
  
  
    
    
      App.xaml
      Code
    
    
      MainWindow.xaml
      Code
    
  

本文首发首发Github WinForms Designer Support

转载于:https://www.cnblogs.com/zonciu/p/10745152.html

你可能感兴趣的:(让VS2019支持.NET Core WinForms和WPF设计器的临时办法(比微软给出的办法更方便)...)