コード例 #1
0
        private void EditCollectionForm_Load(object sender, EventArgs e)
        {
            tbCollectionName.Text        = Control.currentCollection.Name;
            tbCollectionDescription.Text = Control.currentCollection.Description;

            CompleteForm.dgvExistingObjects(this);

            Control.tempObjects = Control.currentCollection.Objects.ToList();

            CompleteForm.dgvCollectionObjects(this);
        }
コード例 #2
0
 private void CreatingCollectionForm_Load(object sender, EventArgs e)
 {
     CompleteForm.dgvExistingObjects(this);
     CompleteForm.dgvCollectionObjects(this);
 }