public SpreadCommanderHostUserInterface(SpreadCommanderHost host)
 {
     _Host  = host;
     _RawUi = new SpreadCommanderRawUserInterface(this);
 }
예제 #2
0
 internal ExternalHost(SpreadCommanderHost host)
 {
     _Host  = host ?? throw new ArgumentNullException(nameof(host), "Host must be assigned");
     SCHost = new SCHost(this);
 }