Home > Mobile >  DesignerProperties.GetIsInDesignMode in Avalonia UI?
DesignerProperties.GetIsInDesignMode in Avalonia UI?

Time:11-18

In WPF, you can detect whether it is showing in design mode using

DesignerProperties.GetIsInDesignMode

What's the equivalent in Avalonia UI

CodePudding user response:

In Avalonia the equivalent is Avalonia.Controls.Design.IsDesignMode

  • Related