コード例 #1
0
 public void Show(SolverSettingsDTO dto)
 {
     _screenBinder.BindToSource(dto);
     _gridBinder.BindToSource(dto.SolverOptions);
 }
コード例 #2
0
 public void BindTo(SimpleProtocolDTO simpleProtocolDTO)
 {
     _screenBinder.BindToSource(simpleProtocolDTO);
 }
コード例 #3
0
 public void BindTo(ObjectBaseSummaryDTO objectBaseDTO)
 {
     _screenBinder.BindToSource(objectBaseDTO);
     _gridViewBinder.BindToSource(objectBaseDTO.Dictionary.OrderBy(x => x.Key));
     pictureBox.Image = objectBaseDTO.ApplicationIcon;
 }
コード例 #4
0
 public void BindTo(TransporterExpressionDTO transporterExpressionDTO)
 {
     _screenBinder.BindToSource(transporterExpressionDTO);
     _gridViewBinder.BindToSource(transporterExpressionDTO.AllContainerExpressions);
     gridView.BestFitColumns();
 }
コード例 #5
0
 public void BindToProperties(ObjectBaseDTO protocolPropertiesDTO)
 {
     _propertiesBinder.BindToSource(protocolPropertiesDTO);
 }
コード例 #6
0
 public void BindTo(SensitivityAnalysisParameterSelectionPresenter sensitivityAnalysisParameterSelectionPresenter)
 {
     _screenBinder.BindToSource(sensitivityAnalysisParameterSelectionPresenter);
 }
コード例 #7
0
 public void BindTo(QuantityDTO quantityDTO)
 {
     _baseEditView.BindToSource(quantityDTO);
     _screenBinder.BindToSource(quantityDTO);
 }
コード例 #8
0
ファイル: SearchView.cs プロジェクト: OwenMcDonnell/MoBi
 public void Start(SearchOptions options)
 {
     _options = options;
     _screenBinder.BindToSource(options);
 }
コード例 #9
0
 public void BindTo(IUserSettings userSettings)
 {
     _screenBinder.BindToSource(userSettings);
 }
コード例 #10
0
 public void BindTo(SelectedCurveValues selectedCurveValues)
 {
     _screenBinder.BindToSource(selectedCurveValues);
 }
コード例 #11
0
 public void BindTo(ProtocolSelectionDTO protocolSelectionDTO)
 {
     _screenBinder.BindToSource(protocolSelectionDTO);
     layoutItemProtocol.Text = uxProtocolSelection.BuildingBlockType.FormatForLabel();
 }
コード例 #12
0
 public void BindTo(JournalPageDTO journalPageDTO)
 {
     _journalPageDTO = journalPageDTO;
     _screenBinder.BindToSource(journalPageDTO);
     updateControlVisibility(relatedItemVisible: true, tagVisible: true);
 }
コード例 #13
0
 public void BindToProperties(AdvancedProtocol advancedProtocol)
 {
     _screenBinder.BindToSource(advancedProtocol);
 }
コード例 #14
0
 public void BindToFilter(LogFilterDTO logStatusFilter)
 {
     _screenBinder.BindToSource(logStatusFilter);
 }
コード例 #15
0
 public void BindProcessTypes()
 {
     _templateBinder.BindToSource(_createProcessPresenter);
 }
コード例 #16
0
 public void BindTo(ShowOntogenyDataDTO showOntogenyDataDTO)
 {
     _screenBinder.BindToSource(showOntogenyDataDTO);
 }
コード例 #17
0
 public void BindTo(ProteinExpressionDTO proteinExpressionDTO)
 {
     _gridViewBinder.BindToSource(proteinExpressionDTO.AllContainerExpressions.ToBindingList());
     _screenBinder.BindToSource(proteinExpressionDTO);
     gridView.BestFitColumns();
 }
コード例 #18
0
ファイル: EventSettingsView.cs プロジェクト: valdiman/PK-Sim
 public void BindTo(EventDTO eventDTO)
 {
     _screenBinder.BindToSource(eventDTO);
 }
コード例 #19
0
 public void BindTo(ModelConfigurationDTO modelConfigurationDTO)
 {
     _modelBinder.BindToSource(modelConfigurationDTO);
 }
コード例 #20
0
ファイル: EditSumFormulaView.cs プロジェクト: Yuri05/MoBi
 public void Show(SumFormulaDTO sumFormulaDTO)
 {
     _screenBinder.BindToSource(sumFormulaDTO);
     lblDescription.Text = AppConstants.Captions.SumFormulaDescription(sumFormulaDTO.VariablePattern).FormatForDescription();
 }
コード例 #21
0
 public virtual void BindTo(ObserverBuilderDTO observerBuilderDTO)
 {
     initNameEditControl(observerBuilderDTO.Name);
     _screenBinder.BindToSource(observerBuilderDTO);
 }
コード例 #22
0
 public void BindToProperties()
 {
     _screenBinder.BindToSource(feedbackPresenter);
 }
 public void BindTo(SimulationSubjectDTO simulationSubjectDTO)
 {
     _screenBinder.BindToSource(simulationSubjectDTO);
 }
コード例 #24
0
 public void BindTo(ComparerSettings comparerSettings)
 {
     _screenBinder.BindToSource(comparerSettings);
 }
コード例 #25
0
 public void BindTo(ApplicationBuilderDTO eventGroupBuilderDTO)
 {
     initNameEdit(eventGroupBuilderDTO);
     _screenBinder.BindToSource(eventGroupBuilderDTO);
     _gridMoleculesBinder.BindToSource(new BindingList <ApplicationMoleculeBuilderDTO>(eventGroupBuilderDTO.Molecules.ToList()));
 }
コード例 #26
0
 public void BindTo(LabelDTO labelDTO)
 {
     _screenBinder.BindToSource(labelDTO);
     SetButtonOKEnable();
 }
コード例 #27
0
 public void BindToModeSelection()
 {
     _screenBinder.BindToSource(_presenter);
 }
コード例 #28
0
 public void BindTo(ValueOrigin valueOrigin)
 {
     _screenBinder.BindToSource(valueOrigin);
     mruDescription.Focus();
     ActiveControl = mruDescription;
 }
コード例 #29
0
 public void Show(SumFormulaDTO sumFormulaDTO)
 {
     _screenBinder.BindToSource(sumFormulaDTO);
 }
コード例 #30
0
 public void Show(ChartOptions chartOptions)
 {
     _screenBinder.BindToSource(chartOptions);
 }