I'm upgrading a .net Framework winforms library to .net 9. I'ts giving me no end of headaches (thanks MS). I've managed to deduce that I need to be using
Microsoft.WinForms.Designer.SDK
Microsoft.WinForms.Designer.SDK
for any verbs etc, but I'm stuck at how to replace MultiLineStringEditor. Importing this lib breaks my existing code:
[Editor(typeof(MultilineStringEditor), typeof(System.Drawing.Design.UITypeEditor))] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public new string ToolTipText { get; set; } = null;
[Editor(typeof(MultilineStringEditor), typeof(System.Drawing.Design.UITypeEditor))] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public new string ToolTipText { get; set; } = null;