Пример #1
0
        public static string ShowCustomMetaFromSet(string nodeTable)
        {
            AzCustomMetaFromSet azCustomMetaFromSet = new AzCustomMetaFromSet();

            azCustomMetaFromSet.AzGetCustomList(nodeTable);
            if (azCustomMetaFromSet.ShowDialog() == DialogResult.OK)
            {
                return(azCustomMetaFromSet.currentSelectTable);
            }
            return(string.Empty);
        }
 private void btMetaSource_Click(object sender, System.EventArgs e)
 {
     textSchemaFrom.Text = AzCustomMetaFromSet.ShowCustomMetaFromSet(azObjModeName);
 }