/// <summary> /// Constructor. /// </summary> public AIMTCGAComponentControl(AIMTCGAComponent component) : base(component) { InitializeComponent(); _component = component; _aimTCGAServiceComboBox.DataBindings.Add("DataSource", _component, "AIMTCGAServiceList", false, DataSourceUpdateMode.OnPropertyChanged); _aimTCGAServiceComboBox.DataBindings.Add("Text", _component, "AIMTCGAServiceUrl", false, DataSourceUpdateMode.OnPropertyChanged); }
/// <summary> /// Called by the host to assign this view to a component. /// </summary> public void SetComponent(IApplicationComponent component) { _component = (AIMTCGAComponent)component; }