Browse Source
* feat(DevTools): Add LaunchView property to DevToolsOptions Allow set the initial diagnostic view when launch DevTools * fix: Address reviewpull/14093/head
committed by
GitHub
3 changed files with 26 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
namespace Avalonia.Diagnostics; |
|||
|
|||
/// <summary>
|
|||
/// Kinds of diagnostic views available in DevTools
|
|||
/// </summary>
|
|||
public enum DevToolsViewKind |
|||
{ |
|||
/// <summary>
|
|||
/// The Logical Tree diagnostic view
|
|||
/// </summary>
|
|||
LogicalTree, |
|||
/// <summary>
|
|||
/// The Visual Tree diagnostic view
|
|||
/// </summary>
|
|||
VisualTree, |
|||
/// <summary>
|
|||
/// Events diagnostic view
|
|||
/// </summary>
|
|||
Events, |
|||
} |
|||
Loading…
Reference in new issue