microsoft/winforms-designer-extensibility

TileRepeaterDesigner is not loaded.

lucapivato opened this issue · 1 comments

Great sample, thank you. However, it seems that the [Designer("TileRepeaterDesigner")] is not working. The type editors seem to work, but the designer is ignored.

image

OT: It also looks like the label control in .NET 6 is painted incorrectly with a border.

.NET 4.7.2
image

.NET 6.0 or 7.0
image

Never mind, works after changing the WinForms.Tiles.Designer.Server.TypeRoutingProvider to

 new TypeRoutingDefinition(
                    TypeRoutingKinds.Designer,
                    nameof(TileRepeaterDesigner),
                    typeof(TileRepeaterDesigner))