Exemplo n.º 1
0
        private void SetServerType(ICiEntryPoint newServerType)
        {
            ClearConfigurePanel();
            var configureServerControl = newServerType.CreateConfigurationWindow(Settings, _ciEntryPointSetting);

            configureServerControl.BackColor = Color.Transparent;
            configureServerControl.ForeColor = Color.White;
            _configurationContainer.Controls.Add(configureServerControl);
            _ciEntryPointSetting.Name = newServerType.Name;
        }
Exemplo n.º 2
0
 private void SetServerType(ICiEntryPoint newServerType)
 {
     ClearConfigurePanel();
     var configureServerControl = newServerType.CreateConfigurationWindow(Settings, _ciEntryPointSetting);
     configureServerControl.BackColor = Color.Transparent;
     configureServerControl.ForeColor = Color.White;
     _configurationContainer.Controls.Add(configureServerControl);
     _ciEntryPointSetting.Name = newServerType.Name;
 }