Esempio n. 1
0
 internal void SetArcheoObjectInForm(ArcheoObject archeoObject)
 {
     this.archeoObject                 = archeoObject;
     this.textBoxCode.Text             = archeoObject.GetCode();
     this.textBoxCoordinate.Text       = archeoObject.GetCoordinate();
     this.textBoxDepth.Text            = archeoObject.GetDepth().ToString();
     this.textBoxDescription.Text      = archeoObject.GetDescription();
     this.textBoxHeight.Text           = archeoObject.GetHeight().ToString();
     this.textBoxParticularities.Text  = archeoObject.GetParticularities();
     this.textBoxPicturePath.Text      = archeoObject.GetShortPath();
     this.textBoxTitle.Text            = archeoObject.GetTitle();
     this.textBoxTypeOfBuild.Text      = archeoObject.GetTypeOfBuild();
     this.textBoxTypeOfCoordinate.Text = archeoObject.GetTypeOfCoordinate();
     this.textBoxWidth.Text            = archeoObject.GetWidth().ToString();
 }