private void txtName_TextChanged(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtName.Text)) { txtPath.Text = string.Empty; } else { txtPath.Text = ProjectManager.Project.GetRelativePath(DEM.AssocSurfacePath(txtName.Text)); } }
private void txtName_TextChanged(object sender, EventArgs e) { txtPath.Text = ProjectManager.Project.GetRelativePath(DEM.AssocSurfacePath(txtName.Text)); }