mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
14 lines
352 B
C#
14 lines
352 B
C#
using mRemoteNG.UI.Controls;
|
|
|
|
|
|
namespace mRemoteNG.Tree
|
|
{
|
|
public class RootNodeExpander : IConnectionTreeDelegate
|
|
{
|
|
public void Execute(IConnectionTree connectionTree)
|
|
{
|
|
var rootConnectionNode = connectionTree.GetRootConnectionNode();
|
|
connectionTree.InvokeExpand(rootConnectionNode);
|
|
}
|
|
}
|
|
} |