void PopulateSchemaList()
 {
     foreach (XmlSchemaCompletion schema in registeredXmlSchemas.Schemas)
     {
         XmlSchemaListItem item = new XmlSchemaListItem(schema.NamespaceUri, schema.IsReadOnly);
         schemasPanel.AddXmlSchemaListItem(item);
     }
     schemasPanel.AddXmlSchemaListSortDescription("NamespaceUri", ListSortDirection.Ascending);
 }