Skip to content

Instantly share code, notes, and snippets.

View SuavePirate's full-sized avatar
🐙
Building Cephable

Alex Dunn SuavePirate

🐙
Building Cephable
View GitHub Profile
public class HtmlTextBehavior : Behavior<TextBlock>
{
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.Loaded += OnAssociatedObjectLoaded;
AssociatedObject.LayoutUpdated += OnAssociatedObjectLayoutUpdated;
}
protected override void OnDetaching()