public function GetForm()
 {
     $oForm = new DesignerForm();
     $oForm->SetPrefix("dashlet_" . $this->GetID());
     $oForm->SetParamsContainer('params');
     $this->GetPropertiesFields($oForm);
     $oDashletClassField = new DesignerHiddenField('dashlet_class', '', get_class($this));
     $oForm->AddField($oDashletClassField);
     $oDashletIdField = new DesignerHiddenField('dashlet_id', '', $this->GetID());
     $oForm->AddField($oDashletIdField);
     return $oForm;
 }