using mRemoteNG.UI.Controls; namespace mRemoteNG.Tree { public class RootNodeExpander : IConnectionTreeDelegate { public void Execute(IConnectionTree connectionTree) { var rootConnectionNode = connectionTree.GetRootConnectionNode(); connectionTree.InvokeExpand(rootConnectionNode); } } }