示例#1
0
 private void btnAdvanced_Click(object sender, EventArgs e)
 {
     WriteEncryptedCredentials();
     var diag = new WmsAdvancedConfigurationDialog(_service);
     if (diag.ShowDialog() == DialogResult.OK)
     {
         _fs.SetConfigurationContent(diag.Document.ToXml());
         OnResourceChanged();
     }
 }
示例#2
0
        private void btnAdvanced_Click(object sender, EventArgs e)
        {
            WriteEncryptedCredentials();
            var diag = new WmsAdvancedConfigurationDialog(_service);

            if (diag.ShowDialog() == DialogResult.OK)
            {
                _fs.SetConfigurationContent(_service.CurrentConnection, diag.Document.ToXml());
                OnResourceChanged();
            }
        }