When compiling under Linux(void, x64) using .net 9, I get the following error(Almost the only one! which is amazing!)(This is the second #35 ):
DockPanel.cs(25, 50): [CS0234] The type or namespace name 'ControlDesigner' does not exist in the namespace 'System.Windows.Forms.Design' (are you missing an assembly reference?)
on this code:
[Designer(typeof(System.Windows.Forms.Design.ControlDesigner))]
[LocalizedDescription("DockPanel_Description")]
[Designer(typeof(System.Windows.Forms.Design.ControlDesigner))]
[ToolboxBitmap(typeof(resfinder), "WeifenLuo.WinFormsUI.Docking.DockPanel.bmp")]
[DefaultProperty("DocumentStyle")]
[DefaultEvent("ActiveContentChanged")]
public partial class DockPanel : Panel{}
Is this something missing in the library or should I change something in my code?
Thanks