BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
[C#] this.AssociatedObject.GanttGrid.InternalGrid.QueryCellInfo += InternalGrid_QueryCellInfo; void InternalGrid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e) { var allnodes = (sender as GridTreeControlImpl).Nodes; if (e.Cell.RowIndex == 5) e.Style.Background = Brushes.Red; |
[C#] this.AssociatedObject.GanttGrid.InternalGrid.RowHeaderStyle = new GridStyleInfo() { Background = new SolidColorBrush(Colors.Gray) }; this.AssociatedObject.GanttGrid.LevelStyles.Add(new GridStyleInfo() { Background = new SolidColorBrush(Colors.Gray) }); |
[C#] this.AssociatedObject.GanttGrid.InternalGrid.QueryCellInfo += InternalGrid_QueryCellInfo; void InternalGrid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e) { if (e.Cell.RowIndex == 5) e.Style.Background = Brushes.Red; |