public SynchronizationToolConfigurationComponentControl(SynchronizationToolConfigurationComponent component)
        {
            InitializeComponent();

            _component      = component;
            _toleranceAngle = _component.ParallelPlanesToleranceAngle.ToString();
            _txtToleranceAngle.DataBindings.Add("Text", this, "ToleranceAngle", false, DataSourceUpdateMode.OnPropertyChanged);
        }
		public SynchronizationToolConfigurationComponentControl(SynchronizationToolConfigurationComponent component)
		{
			InitializeComponent();

			_component = component;
			_toleranceAngle = _component.ParallelPlanesToleranceAngle.ToString();
			_txtToleranceAngle.DataBindings.Add("Text", this, "ToleranceAngle", false, DataSourceUpdateMode.OnPropertyChanged);
		}
 public void SetComponent(IApplicationComponent component)
 {
     _component = (SynchronizationToolConfigurationComponent)component;
 }
		public void SetComponent(IApplicationComponent component)
		{
			_component = (SynchronizationToolConfigurationComponent) component;
		}