Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / DataGridTableCollection.cs / 1 / DataGridTableCollection.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.Collections;
using System.Windows.Forms;
using System.ComponentModel;
using System.Globalization;
///
///
/// Represents a collection of objects in the
/// control.
///
[ListBindable(false)]
public class GridTableStylesCollection : BaseCollection ,IList {
CollectionChangeEventHandler onCollectionChanged;
ArrayList items = new ArrayList();
DataGrid owner = null;
///
///
int IList.Add(object value) {
return this.Add((DataGridTableStyle) value);
}
///
///
void IList.Clear() {
this.Clear();
}
///
///
bool IList.Contains(object value) {
return items.Contains(value);
}
///
///
int IList.IndexOf(object value) {
return items.IndexOf(value);
}
///
///
void IList.Insert(int index, object value) {
throw new NotSupportedException();
}
///
///
void IList.Remove(object value) {
this.Remove((DataGridTableStyle)value);
}
///
///
void IList.RemoveAt(int index) {
this.RemoveAt(index);
}
///
///
bool IList.IsFixedSize {
get {return false;}
}
///
///
bool IList.IsReadOnly {
get {return false;}
}
///
///
object IList.this[int index] {
get { return items[index]; }
set { throw new NotSupportedException(); }
}
///
///
void ICollection.CopyTo(Array array, int index) {
this.items.CopyTo(array, index);
}
///
///
int ICollection.Count {
get {return this.items.Count;}
}
///
///
bool ICollection.IsSynchronized {
get {return false;}
}
///
///
object ICollection.SyncRoot {
get {return this;}
}
///
///
IEnumerator IEnumerable.GetEnumerator() {
return items.GetEnumerator();
}
internal GridTableStylesCollection(DataGrid grid) {
owner = grid;
}
///
///
/// [To be supplied.]
///
protected override ArrayList List {
get {
return items;
}
}
/* implemented in BaseCollection
///
/// Retrieves the number of GridTables in the collection.
///
///
/// The number of GridTables in the collection.
///
public override int Count {
get {
return items.Count;
}
}
*/
///
///
/// Retrieves the DataGridTable with the specified index.
///
public DataGridTableStyle this[int index] {
get {
return (DataGridTableStyle)items[index];
}
}
///
///
/// Retrieves the DataGridTable with the name provided.
///
public DataGridTableStyle this[string tableName] {
get {
if (tableName == null)
throw new ArgumentNullException("tableName");
int itemCount = items.Count;
for (int i = 0; i < itemCount; ++i) {
DataGridTableStyle table = (DataGridTableStyle)items[i];
// NOTE: case-insensitive
if (String.Equals(table.MappingName, tableName, StringComparison.OrdinalIgnoreCase))
return table;
}
return null;
}
}
internal void CheckForMappingNameDuplicates(DataGridTableStyle table) {
if (String.IsNullOrEmpty(table.MappingName))
return;
for (int i = 0; i < items.Count; i++)
if ( ((DataGridTableStyle)items[i]).MappingName.Equals(table.MappingName) && table != items[i])
throw new ArgumentException(SR.GetString(SR.DataGridTableStyleDuplicateMappingName), "table");
}
///
///
/// Adds a to this collection.
///
public virtual int Add(DataGridTableStyle table) {
// set the rowHeaderWidth on the newly added table to at least the minimum value
// on its owner
if (this.owner != null && this.owner.MinimumRowHeaderWidth() > table.RowHeaderWidth)
table.RowHeaderWidth = this.owner.MinimumRowHeaderWidth();
if (table.DataGrid != owner && table.DataGrid != null)
throw new ArgumentException(SR.GetString(SR.DataGridTableStyleCollectionAddedParentedTableStyle), "table");
table.DataGrid = owner;
CheckForMappingNameDuplicates(table);
table.MappingNameChanged += new EventHandler(TableStyleMappingNameChanged);
int index = items.Add(table);
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Add, table));
return index;
}
private void TableStyleMappingNameChanged(object sender, EventArgs pcea) {
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// [To be supplied.]
///
public virtual void AddRange(DataGridTableStyle[] tables) {
if (tables == null) {
throw new ArgumentNullException("tables");
}
foreach(DataGridTableStyle table in tables) {
table.DataGrid = owner;
table.MappingNameChanged += new EventHandler(TableStyleMappingNameChanged);
items.Add(table);
}
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// [To be supplied.]
///
public event CollectionChangeEventHandler CollectionChanged {
add {
onCollectionChanged += value;
}
remove {
onCollectionChanged -= value;
}
}
///
///
/// [To be supplied.]
///
public void Clear() {
for (int i = 0; i < items.Count; i++) {
DataGridTableStyle element = (DataGridTableStyle)items[i];
element.MappingNameChanged -= new EventHandler(TableStyleMappingNameChanged);
}
items.Clear();
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// Checks to see if a DataGridTableStyle is contained in this collection.
///
public bool Contains(DataGridTableStyle table) {
int index = items.IndexOf(table);
return index != -1;
}
///
///
/// Checks to see if a with the given name
/// is contained in this collection.
///
public bool Contains(string name) {
int itemCount = items.Count;
for (int i = 0; i < itemCount; ++i) {
DataGridTableStyle table = (DataGridTableStyle)items[i];
// NOTE: case-insensitive
if (String.Compare(table.MappingName, name, true, CultureInfo.InvariantCulture) == 0)
return true;
}
return false;
}
/*
public override IEnumerator GetEnumerator() {
return items.GetEnumerator();
}
public override IEnumerator GetEnumerator(bool allowRemove) {
if (!allowRemove)
return GetEnumerator();
else
throw new NotSupportedException(SR.GetString(SR.DataGridTableCollectionGetEnumerator));
}
*/
///
///
/// [To be supplied.]
///
protected void OnCollectionChanged(CollectionChangeEventArgs e) {
if (onCollectionChanged != null)
onCollectionChanged(this, e);
DataGrid grid = owner;
if (grid != null) {
/* FOR DEMO: [....]: TableStylesCollection::OnCollectionChanged: set the datagridtble
DataView dataView = ((DataView) grid.DataSource);
if (dataView != null) {
DataTable dataTable = dataView.Table;
if (dataTable != null) {
if (Contains(dataTable)) {
grid.SetDataGridTable(this[dataTable]);
}
}
}
*/
grid.checkHierarchy = true;
}
}
///
///
/// [To be supplied.]
///
public void Remove(DataGridTableStyle table) {
int tableIndex = -1;
int itemsCount = items.Count;
for (int i = 0; i < itemsCount; ++i)
if (items[i] == table) {
tableIndex = i;
break;
}
if (tableIndex == -1)
throw new ArgumentException(SR.GetString(SR.DataGridTableCollectionMissingTable), "table");
else
RemoveAt(tableIndex);
}
///
///
/// [To be supplied.]
///
public void RemoveAt(int index) {
DataGridTableStyle element = (DataGridTableStyle)items[index];
element.MappingNameChanged -= new EventHandler(TableStyleMappingNameChanged);
items.RemoveAt(index);
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, element));
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.Collections;
using System.Windows.Forms;
using System.ComponentModel;
using System.Globalization;
///
///
/// Represents a collection of objects in the
/// control.
///
[ListBindable(false)]
public class GridTableStylesCollection : BaseCollection ,IList {
CollectionChangeEventHandler onCollectionChanged;
ArrayList items = new ArrayList();
DataGrid owner = null;
///
///
int IList.Add(object value) {
return this.Add((DataGridTableStyle) value);
}
///
///
void IList.Clear() {
this.Clear();
}
///
///
bool IList.Contains(object value) {
return items.Contains(value);
}
///
///
int IList.IndexOf(object value) {
return items.IndexOf(value);
}
///
///
void IList.Insert(int index, object value) {
throw new NotSupportedException();
}
///
///
void IList.Remove(object value) {
this.Remove((DataGridTableStyle)value);
}
///
///
void IList.RemoveAt(int index) {
this.RemoveAt(index);
}
///
///
bool IList.IsFixedSize {
get {return false;}
}
///
///
bool IList.IsReadOnly {
get {return false;}
}
///
///
object IList.this[int index] {
get { return items[index]; }
set { throw new NotSupportedException(); }
}
///
///
void ICollection.CopyTo(Array array, int index) {
this.items.CopyTo(array, index);
}
///
///
int ICollection.Count {
get {return this.items.Count;}
}
///
///
bool ICollection.IsSynchronized {
get {return false;}
}
///
///
object ICollection.SyncRoot {
get {return this;}
}
///
///
IEnumerator IEnumerable.GetEnumerator() {
return items.GetEnumerator();
}
internal GridTableStylesCollection(DataGrid grid) {
owner = grid;
}
///
///
/// [To be supplied.]
///
protected override ArrayList List {
get {
return items;
}
}
/* implemented in BaseCollection
///
/// Retrieves the number of GridTables in the collection.
///
///
/// The number of GridTables in the collection.
///
public override int Count {
get {
return items.Count;
}
}
*/
///
///
/// Retrieves the DataGridTable with the specified index.
///
public DataGridTableStyle this[int index] {
get {
return (DataGridTableStyle)items[index];
}
}
///
///
/// Retrieves the DataGridTable with the name provided.
///
public DataGridTableStyle this[string tableName] {
get {
if (tableName == null)
throw new ArgumentNullException("tableName");
int itemCount = items.Count;
for (int i = 0; i < itemCount; ++i) {
DataGridTableStyle table = (DataGridTableStyle)items[i];
// NOTE: case-insensitive
if (String.Equals(table.MappingName, tableName, StringComparison.OrdinalIgnoreCase))
return table;
}
return null;
}
}
internal void CheckForMappingNameDuplicates(DataGridTableStyle table) {
if (String.IsNullOrEmpty(table.MappingName))
return;
for (int i = 0; i < items.Count; i++)
if ( ((DataGridTableStyle)items[i]).MappingName.Equals(table.MappingName) && table != items[i])
throw new ArgumentException(SR.GetString(SR.DataGridTableStyleDuplicateMappingName), "table");
}
///
///
/// Adds a to this collection.
///
public virtual int Add(DataGridTableStyle table) {
// set the rowHeaderWidth on the newly added table to at least the minimum value
// on its owner
if (this.owner != null && this.owner.MinimumRowHeaderWidth() > table.RowHeaderWidth)
table.RowHeaderWidth = this.owner.MinimumRowHeaderWidth();
if (table.DataGrid != owner && table.DataGrid != null)
throw new ArgumentException(SR.GetString(SR.DataGridTableStyleCollectionAddedParentedTableStyle), "table");
table.DataGrid = owner;
CheckForMappingNameDuplicates(table);
table.MappingNameChanged += new EventHandler(TableStyleMappingNameChanged);
int index = items.Add(table);
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Add, table));
return index;
}
private void TableStyleMappingNameChanged(object sender, EventArgs pcea) {
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// [To be supplied.]
///
public virtual void AddRange(DataGridTableStyle[] tables) {
if (tables == null) {
throw new ArgumentNullException("tables");
}
foreach(DataGridTableStyle table in tables) {
table.DataGrid = owner;
table.MappingNameChanged += new EventHandler(TableStyleMappingNameChanged);
items.Add(table);
}
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// [To be supplied.]
///
public event CollectionChangeEventHandler CollectionChanged {
add {
onCollectionChanged += value;
}
remove {
onCollectionChanged -= value;
}
}
///
///
/// [To be supplied.]
///
public void Clear() {
for (int i = 0; i < items.Count; i++) {
DataGridTableStyle element = (DataGridTableStyle)items[i];
element.MappingNameChanged -= new EventHandler(TableStyleMappingNameChanged);
}
items.Clear();
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Refresh, null));
}
///
///
/// Checks to see if a DataGridTableStyle is contained in this collection.
///
public bool Contains(DataGridTableStyle table) {
int index = items.IndexOf(table);
return index != -1;
}
///
///
/// Checks to see if a with the given name
/// is contained in this collection.
///
public bool Contains(string name) {
int itemCount = items.Count;
for (int i = 0; i < itemCount; ++i) {
DataGridTableStyle table = (DataGridTableStyle)items[i];
// NOTE: case-insensitive
if (String.Compare(table.MappingName, name, true, CultureInfo.InvariantCulture) == 0)
return true;
}
return false;
}
/*
public override IEnumerator GetEnumerator() {
return items.GetEnumerator();
}
public override IEnumerator GetEnumerator(bool allowRemove) {
if (!allowRemove)
return GetEnumerator();
else
throw new NotSupportedException(SR.GetString(SR.DataGridTableCollectionGetEnumerator));
}
*/
///
///
/// [To be supplied.]
///
protected void OnCollectionChanged(CollectionChangeEventArgs e) {
if (onCollectionChanged != null)
onCollectionChanged(this, e);
DataGrid grid = owner;
if (grid != null) {
/* FOR DEMO: [....]: TableStylesCollection::OnCollectionChanged: set the datagridtble
DataView dataView = ((DataView) grid.DataSource);
if (dataView != null) {
DataTable dataTable = dataView.Table;
if (dataTable != null) {
if (Contains(dataTable)) {
grid.SetDataGridTable(this[dataTable]);
}
}
}
*/
grid.checkHierarchy = true;
}
}
///
///
/// [To be supplied.]
///
public void Remove(DataGridTableStyle table) {
int tableIndex = -1;
int itemsCount = items.Count;
for (int i = 0; i < itemsCount; ++i)
if (items[i] == table) {
tableIndex = i;
break;
}
if (tableIndex == -1)
throw new ArgumentException(SR.GetString(SR.DataGridTableCollectionMissingTable), "table");
else
RemoveAt(tableIndex);
}
///
///
/// [To be supplied.]
///
public void RemoveAt(int index) {
DataGridTableStyle element = (DataGridTableStyle)items[index];
element.MappingNameChanged -= new EventHandler(TableStyleMappingNameChanged);
items.RemoveAt(index);
OnCollectionChanged(new CollectionChangeEventArgs(CollectionChangeAction.Remove, element));
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LoginView.cs
- smtpconnection.cs
- WindowsClaimSet.cs
- EnumUnknown.cs
- RemotingSurrogateSelector.cs
- DbProviderFactories.cs
- NonPrimarySelectionGlyph.cs
- ZipQueryOperator.cs
- CodePageUtils.cs
- XmlExtensionFunction.cs
- ProfilePropertyNameValidator.cs
- PropertyConverter.cs
- ExcludePathInfo.cs
- XmlCountingReader.cs
- VersionPair.cs
- TabPage.cs
- BaseParaClient.cs
- StreamAsIStream.cs
- DocumentDesigner.cs
- RegexTypeEditor.cs
- Input.cs
- WmpBitmapDecoder.cs
- WindowShowOrOpenTracker.cs
- EntityDataSourceEntityTypeFilterItem.cs
- Codec.cs
- VarRemapper.cs
- AddInActivator.cs
- WindowsListViewSubItem.cs
- CodeDOMUtility.cs
- ClientTargetCollection.cs
- Encoder.cs
- SapiInterop.cs
- InstalledVoice.cs
- BuildProviderAppliesToAttribute.cs
- HttpCookiesSection.cs
- StrokeNodeEnumerator.cs
- HtmlTernaryTree.cs
- PeerCollaborationPermission.cs
- PagePropertiesChangingEventArgs.cs
- FrugalMap.cs
- CodeDOMUtility.cs
- KnownColorTable.cs
- TagNameToTypeMapper.cs
- SrgsGrammarCompiler.cs
- CryptoApi.cs
- NameSpaceExtractor.cs
- PowerModeChangedEventArgs.cs
- DataGridViewComboBoxColumn.cs
- ComplexLine.cs
- FastPropertyAccessor.cs
- QualifiedCellIdBoolean.cs
- StrongNameKeyPair.cs
- StatusStrip.cs
- GrammarBuilder.cs
- ThicknessAnimationUsingKeyFrames.cs
- SerialReceived.cs
- MsiStyleLogWriter.cs
- ShapingWorkspace.cs
- ExtendedProperty.cs
- FormattedText.cs
- Renderer.cs
- Image.cs
- ContractSearchPattern.cs
- PeerCustomResolverBindingElement.cs
- ApplicationFileCodeDomTreeGenerator.cs
- dtdvalidator.cs
- ReadOnlyHierarchicalDataSource.cs
- IntPtr.cs
- ComponentResourceKeyConverter.cs
- EncodingDataItem.cs
- DataGridViewCheckBoxCell.cs
- Keyboard.cs
- CommonEndpointBehaviorElement.cs
- TypeHelper.cs
- FontDialog.cs
- TemplatePartAttribute.cs
- SafeProcessHandle.cs
- SendKeys.cs
- XmlSchemaExternal.cs
- RepeaterCommandEventArgs.cs
- ProviderException.cs
- TextFormatterImp.cs
- FixedPageStructure.cs
- BaseTemplateBuildProvider.cs
- Emitter.cs
- SynchronizingStream.cs
- EnvelopedPkcs7.cs
- WebScriptMetadataMessage.cs
- RadialGradientBrush.cs
- CodeAssignStatement.cs
- ProfessionalColors.cs
- ItemList.cs
- cookieexception.cs
- StringCollectionMarkupSerializer.cs
- SchemaInfo.cs
- XmlValidatingReader.cs
- XmlSchemaRedefine.cs
- VisualStyleInformation.cs
- BasicHttpMessageSecurityElement.cs
- GregorianCalendarHelper.cs