📄 expandervisitor.cs
字号:
using System;
namespace Netron.Lithium
{
/// <summary>
/// Expands each node on visit
/// </summary>
public class ExpanderVisitor : IVisitor
{
/// <summary>
/// Visits the shape
/// </summary>
/// <param name="sh"></param>
public void Visit(ShapeBase sh)
{
sh.Expand();
}
/// <summary>
/// Gets whether the visiting is done
/// </summary>
public bool IsDone
{
get
{
return false;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -