private void btnBrowseRoot_Click(object sender, EventArgs e)
        {
            txtTargetRoot.Text = _service.SelectFolder();

            if (string.IsNullOrEmpty(txtFeatureSourceRoot.Text))
            {
                txtFeatureSourceRoot.Text = txtTargetRoot.Text;
            }

            if (string.IsNullOrEmpty(txtLayerRoot.Text))
            {
                txtLayerRoot.Text = txtTargetRoot.Text;
            }
        }
Exemplo n.º 2
0
 public string SelectFolder() => _inner.SelectFolder();