For some reason, adding this to a client project breaks the current Helper class (haven't investigated deeply enough what other options are):
namespace CSharpMarkup.Wpf;
public static class Helpers
{
public static TextBlock TextBlock(System.Windows.Documents.Inline[] chidren)
{
var ui = new System.Windows.Controls.TextBlock();
foreach (var ch in chidren) ui.Inlines.Add(ch);
return ui;
}
}