Provides data for a Row's PropertyChanged, CellAdded and CellRemoved events
Inheritance: System.EventArgs
Exemplo n.º 1
0
 /// <summary>
 /// Raises the CellRemoved event
 /// </summary>
 /// <param name="e">A RowEventArgs that contains the event data</param>
 internal void OnCellRemoved(RowEventArgs e)
 {
     if (this.Table != null)
     {
         this.Table.OnCellRemoved(e);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Raises the RowPropertyChanged event
 /// </summary>
 /// <param name="e">A RowEventArgs that contains the event data</param>
 internal void OnRowPropertyChanged(RowEventArgs e)
 {
     if (this.Table != null)
     {
         this.Table.OnRowPropertyChanged(e);
     }
 }
Exemplo n.º 3
0
        /// <summary>
        /// Raises the SubRowRemoved event
        /// </summary>
        /// <param name="e"></param>
        protected internal virtual void OnSubRowRemoved(RowEventArgs e)
        {
            this.TableModel.Rows.Remove(e.Row);

            if (SubRowRemoved != null)
            {
                SubRowRemoved(this, e);
            }
        }
Exemplo n.º 4
0
        /// <summary>
        /// Raises the PropertyChanged event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected virtual void OnPropertyChanged(RowEventArgs e)
        {
            e.SetRowIndex(this.Index);

            if (this.CanRaiseEvents)
            {
                if (this.TableModel != null)
                {
                    this.TableModel.OnRowPropertyChanged(e);
                }

                if (PropertyChanged != null)
                {
                    PropertyChanged(this, e);
                }
            }
        }
Exemplo n.º 5
0
        /// <summary>
        /// Raises the CellAdded event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected internal virtual void OnCellAdded(RowEventArgs e)
        {
            e.SetRowIndex(this.Index);

            e.Cell.InternalRow = this;
            e.Cell.InternalIndex = e.CellFromIndex;
            e.Cell.SetSelected(false);

            this.UpdateCellIndicies(e.CellFromIndex);

            if (e.Cell.WordWrap)
            {
                this.WordWrapCellIndex = e.CellFromIndex;
                this.HasWordWrapCell = true;
            }

            if (this.CanRaiseEvents)
            {
                if (this.TableModel != null)
                {
                    this.TableModel.OnCellAdded(e);
                }

                if (CellAdded != null)
                {
                    CellAdded(this, e);
                }
            }
        }
Exemplo n.º 6
0
        /// <summary>
        /// Raises the CellRemoved event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected internal virtual void OnCellRemoved(RowEventArgs e)
        {
            e.SetRowIndex(this.Index);

            if (e.Cell != null)
            {
                if (e.Cell.Row == this)
                {
                    e.Cell.InternalRow = null;
                    e.Cell.InternalIndex = -1;

                    if (e.Cell.Selected)
                    {
                        e.Cell.SetSelected(false);

                        this.InternalSelectedCellCount--;

                        if (this.SelectedCellCount == 0 && this.TableModel != null)
                        {
                            this.TableModel.Selections.RemoveRow(this);
                        }
                    }
                }
            }
            else
            {
                if (e.CellFromIndex == -1 && e.CellToIndex == -1)
                {
                    if (this.SelectedCellCount != 0 && this.TableModel != null)
                    {
                        this.InternalSelectedCellCount = 0;

                        this.TableModel.Selections.RemoveRow(this);
                    }
                }
            }

            this.UpdateCellIndicies(e.CellFromIndex);

            if (this.CanRaiseEvents)
            {
                if (this.TableModel != null)
                {
                    this.TableModel.OnCellRemoved(e);
                }

                if (CellRemoved != null)
                {
                    CellRemoved(this, e);
                }
            }
        }
Exemplo n.º 7
0
        /// <summary>
        /// Raises the RowPropertyChanged event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected internal virtual void OnRowPropertyChanged(RowEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                this.InvalidateRow(e.Index);

                if (RowPropertyChanged != null)
                {
                    RowPropertyChanged(e.Row, e);
                }
            }
        }
Exemplo n.º 8
0
        /// <summary>
        /// Raises the CellRemoved event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected internal virtual void OnCellRemoved(RowEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                this.InvalidateRow(e.Index);

                if (CellRemoved != null)
                {
                    CellRemoved(this, e);
                }

                if (e.CellFromIndex == -1 && e.CellToIndex == -1)
                {
                    if (this.FocusedCell.Row == e.Index)
                    {
                        this.focusedCell = CellPos.Empty;
                    }
                }
                else
                {
                    for (int i = e.CellFromIndex; i <= e.CellToIndex; i++)
                    {
                        if (this.FocusedCell.Row == e.Index && this.FocusedCell.Column == i)
                        {
                            this.focusedCell = CellPos.Empty;

                            break;
                        }
                    }
                }
            }
        }
Exemplo n.º 9
0
        /// <summary>
        /// Raises the CellAdded event
        /// </summary>
        /// <param name="e">A RowEventArgs that contains the event data</param>
        protected internal virtual void OnCellAdded(RowEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                this.InvalidateRow(e.Index);

                if (CellAdded != null)
                {
                    CellAdded(e.Row, e);
                }
            }
        }
Exemplo n.º 10
0
 /// <summary>
 /// Raises the CellRemoved event
 /// </summary>
 /// <param name="e">A RowEventArgs that contains the event data</param>
 protected virtual void OnCellRemoved(RowEventArgs e)
 {
     this.owner.OnCellRemoved(e);
 }
Exemplo n.º 11
0
 /// <summary>
 /// Raises the RowRemoved event
 /// </summary>
 /// <param name="e">A TableModelEventArgs that contains the event data</param>
 protected virtual void OnRowRemoved(RowEventArgs e)
 {
     this.rowowner.OnSubRowRemoved(e);
 }