You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;publicstaticclassHelpers{publicstatic TextBlock TextBlock(System.Windows.Documents.Inline[]chidren){varui=new System.Windows.Controls.TextBlock();foreach(var ch in chidren) ui.Inlines.Add(ch);returnui;}}
The text was updated successfully, but these errors were encountered:
scottcg
changed the title
Need a recipe for adding/extending local Helpers to a project #wpf
Need a recipe for adding/extending local Helpers to a project
Jan 6, 2022
For some reason, adding this to a client project breaks the current Helper class (haven't investigated deeply enough what other options are):
The text was updated successfully, but these errors were encountered: