public override void Save()
 {
     try
     {
         DicomServer.UpdateConfiguration(new DicomServerConfiguration
         {
             HostName = _hostName,
             AETitle  = AETitle,
             Port     = Port
         });
     }
     catch (Exception e)
     {
         ExceptionHandler.Report(e, this.Host.DesktopWindow);
     }
 }