本文整理汇总了C#中System.Windows.Forms.DataGridViewColumn.GetInheritedAutoSizeMode方法的典型用法代码示例。如果您正苦于以下问题:C# DataGridViewColumn.GetInheritedAutoSizeMode方法的具体用法?C# DataGridViewColumn.GetInheritedAutoSizeMode怎么用?C# DataGridViewColumn.GetInheritedAutoSizeMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.DataGridViewColumn
的用法示例。
在下文中一共展示了DataGridViewColumn.GetInheritedAutoSizeMode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnRemovedColumn_PostNotification
internal void OnRemovedColumn_PostNotification(DataGridViewColumn dataGridViewColumn, Point newCurrentCell)
{
// Update current cell if needed
if (newCurrentCell.X != -1)
{
Debug.Assert(this.ptCurrentCell.X == -1);
bool success = SetAndSelectCurrentCellAddress(newCurrentCell.X,
newCurrentCell.Y,
true,
false,
false,
false /*clearSelection*/,
false /*forceCurrentCellSelection*/);
Debug.Assert(success);
}
// Raise SelectionChanged event if needed
FlushSelectionChanged();
// Raise ColumnStateChanged event for Displayed state of deleted column
OnColumnHidden(dataGridViewColumn);
// Columns that are removed from the collection take their non-autosized width
// Note that in some edge cases, the dev could have changed:
// - the grid's AutoSizeColumnsMode
// - the column's Width or AutoSizeMode
// in a ColumnRemoved event handler for example, in which case using the CachedThickness may be wrong.
// At least we make sure the column is not sized smaller than its minimum width.
DataGridViewAutoSizeColumnMode autoSizeColumnMode = dataGridViewColumn.GetInheritedAutoSizeMode(this);
Debug.Assert(autoSizeColumnMode != DataGridViewAutoSizeColumnMode.NotSet);
if (autoSizeColumnMode != DataGridViewAutoSizeColumnMode.None &&
autoSizeColumnMode != DataGridViewAutoSizeColumnMode.Fill &&
dataGridViewColumn.ThicknessInternal != dataGridViewColumn.CachedThickness)
{
dataGridViewColumn.ThicknessInternal = Math.Max(dataGridViewColumn.MinimumWidth, dataGridViewColumn.CachedThickness);
}
// Autosize rows if needed
AdjustShrinkingRows(this.autoSizeRowsMode, true /*fixedWidth*/, true /*internalAutosizing*/);
}
示例2: OnRemovedColumn_PostNotification
internal void OnRemovedColumn_PostNotification(DataGridViewColumn dataGridViewColumn, Point newCurrentCell)
{
if (newCurrentCell.X != -1)
{
this.SetAndSelectCurrentCellAddress(newCurrentCell.X, newCurrentCell.Y, true, false, false, false, false);
}
this.FlushSelectionChanged();
this.OnColumnHidden(dataGridViewColumn);
DataGridViewAutoSizeColumnMode inheritedAutoSizeMode = dataGridViewColumn.GetInheritedAutoSizeMode(this);
if (((inheritedAutoSizeMode != DataGridViewAutoSizeColumnMode.None) && (inheritedAutoSizeMode != DataGridViewAutoSizeColumnMode.Fill)) && (dataGridViewColumn.ThicknessInternal != dataGridViewColumn.CachedThickness))
{
dataGridViewColumn.ThicknessInternal = Math.Max(dataGridViewColumn.MinimumWidth, dataGridViewColumn.CachedThickness);
}
this.AdjustShrinkingRows(this.autoSizeRowsMode, true, true);
}