コード例 #1
0
 void EhYBoundariesChanged(object sender, BoundariesChangedEventArgs args)
 {
     if (null != YBoundariesChanged)
     {
         YBoundariesChanged(this, args);
     }
 }
コード例 #2
0
ファイル: Log10Scale.cs プロジェクト: olesar/Altaxo
        protected void OnBoundariesChanged(object sender, BoundariesChangedEventArgs e)
        {
            bool bIsRelevant = true;

            if (bIsRelevant)         // if something really relevant changed
            {
                ProcessDataBounds(); // calculate new bounds and fire AxisChanged event
            }
        }
コード例 #3
0
        protected virtual void OnVBoundariesChangedEventHandler(object sender, BoundariesChangedEventArgs e)
        {
            if (null != this.VBoundariesChanged)
            {
                VBoundariesChanged(this, e);
            }

            OnChanged();
        }
コード例 #4
0
 public void EhYBoundaryChanged(object sender, BoundariesChangedEventArgs args)
 {
     if (this._parent is XYPlotLayer)
     {
         ((XYPlotLayer)_parent).OnPlotAssociationYBoundariesChanged(sender, args);
     }
     else if (this._parent is PlotItemCollection)
     {
         ((PlotItemCollection)_parent).EhYBoundaryChanged(sender, args);
     }
 }
コード例 #5
0
        protected virtual void EhYBoundariesChanged(object sender, BoundariesChangedEventArgs e)
        {
            if (_SupressBoundaryChangeEvents == 0)
            {
                if (null != this.YBoundariesChanged)
                {
                    YBoundariesChanged(this, e);
                }

                OnChanged();
            }
        }
コード例 #6
0
 protected void EhBoundariesChanged(object sender, BoundariesChangedEventArgs e)
 {
     ProcessDataBounds(); // calculate new bounds and fire AxisChanged event
 }
コード例 #7
0
ファイル: DateTimeScale.cs プロジェクト: Altaxo/Altaxo
		protected void EhBoundariesChanged(object sender, BoundariesChangedEventArgs e)
		{
			bool bIsRelevant = true;

			if (bIsRelevant) // if something really relevant changed
			{
				ProcessDataBounds(); // calculate new bounds and fire AxisChanged event
			}
		}