Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ToolStripSettings.cs / 1305376 / ToolStripSettings.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Configuration; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Drawing; using System.Text; using System.Text.RegularExpressions; ////// /// A settings class used by the ToolStripManager to save toolstrip settings. /// internal class ToolStripSettings : ApplicationSettingsBase { internal ToolStripSettings(string settingsKey) : base(settingsKey) {} [UserScopedSetting] [DefaultSettingValue("true")] public bool IsDefault { get { return (bool) this["IsDefault"]; } set { this["IsDefault"] = value; } } [UserScopedSetting] public string ItemOrder { get { return this["ItemOrder"] as string; } set { this["ItemOrder"] = value; } } [UserScopedSetting] public string Name { get { return this["Name"] as string; } set { this["Name"] = value; } } [UserScopedSetting] [DefaultSettingValue("0,0")] public Point Location { get { return (Point) this["Location"]; } set { this["Location"] = value; } } [UserScopedSetting] [DefaultSettingValue("0,0")] public Size Size { get { return (Size) this["Size"]; } set { this["Size"] = value; } } [UserScopedSetting] public string ToolStripPanelName { get { return this["ToolStripPanelName"] as string; } set { this["ToolStripPanelName"] = value; } } [UserScopedSetting] [DefaultSettingValue("true")] public bool Visible { get { return (bool) this["Visible"]; } set { this["Visible"] = value; } } public override void Save() { this.IsDefault = false; base.Save(); } } ////// /// Helper class used by ToolStripManager that implements most of the logic to save out and apply /// settings for toolstrips on a form. /// internal class ToolStripSettingsManager { private Form form; private string formKey; internal ToolStripSettingsManager(Form owner, string formKey) { this.form = owner; this.formKey = formKey; } internal void Load() { ArrayList savedToolStripSettingsObjects = new ArrayList(); foreach (ToolStrip toolStrip in FindToolStrips(true, form.Controls)) { if (toolStrip != null && !string.IsNullOrEmpty(toolStrip.Name)) { ToolStripSettings toolStripSettings = new ToolStripSettings(GetSettingsKey(toolStrip)); // Check if we have settings saved out for this toolstrip. If so, add it to our apply list. if (!toolStripSettings.IsDefault) { savedToolStripSettingsObjects.Add(new SettingsStub(toolStripSettings)); } } } ApplySettings(savedToolStripSettingsObjects); } internal void Save() { foreach (ToolStrip toolStrip in FindToolStrips(true, form.Controls)) { if (toolStrip != null && !string.IsNullOrEmpty(toolStrip.Name)) { ToolStripSettings toolStripSettings = new ToolStripSettings(GetSettingsKey(toolStrip)); SettingsStub stub = new SettingsStub(toolStrip); toolStripSettings.ItemOrder = stub.ItemOrder; toolStripSettings.Name = stub.Name; toolStripSettings.Location = stub.Location; toolStripSettings.Size = stub.Size; toolStripSettings.ToolStripPanelName = stub.ToolStripPanelName; toolStripSettings.Visible = stub.Visible; toolStripSettings.Save(); } } } internal static string GetItemOrder(ToolStrip toolStrip) { StringBuilder itemNames = new StringBuilder(toolStrip.Items.Count); for (int i = 0; i < toolStrip.Items.Count; i++) { itemNames.Append((toolStrip.Items[i].Name == null) ? "null" : toolStrip.Items[i].Name); if (i != toolStrip.Items.Count - 1) { itemNames.Append(","); } } return itemNames.ToString(); } private void ApplySettings(ArrayList toolStripSettingsToApply) { if (toolStripSettingsToApply.Count == 0) { return; } SuspendAllLayout(form); // iterate through all the toolstrips and build up a hash of where the items // are right now. DictionaryitemLocationHash = BuildItemOriginationHash(); // build up a hash of where we want the ToolStrips to go Dictionary
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TemplatedMailWebEventProvider.cs
- TextDecorations.cs
- SymbolTable.cs
- StickyNoteAnnotations.cs
- WebSysDisplayNameAttribute.cs
- SelectedPathEditor.cs
- ControlParameter.cs
- SecurityState.cs
- ProviderException.cs
- MetadataExporter.cs
- WindowsFormsSectionHandler.cs
- AssociationType.cs
- UIPropertyMetadata.cs
- DispatcherEventArgs.cs
- FormsAuthenticationEventArgs.cs
- IPAddressCollection.cs
- MarkupWriter.cs
- DocumentOrderComparer.cs
- NavigateEvent.cs
- PropertyRecord.cs
- Authorization.cs
- TreeViewEvent.cs
- ParameterCollection.cs
- ListViewUpdatedEventArgs.cs
- TraceRecords.cs
- StrokeFIndices.cs
- VectorCollectionValueSerializer.cs
- WebEncodingValidator.cs
- SchemaElementDecl.cs
- GetChildSubtree.cs
- BoundColumn.cs
- _NestedSingleAsyncResult.cs
- ConstraintConverter.cs
- ProcessModuleCollection.cs
- AlignmentYValidation.cs
- Int16AnimationBase.cs
- TableParagraph.cs
- EventDescriptor.cs
- DiscoveryMessageSequenceCD1.cs
- ProviderConnectionPoint.cs
- AsymmetricSignatureDeformatter.cs
- CallContext.cs
- MDIClient.cs
- KnownTypesHelper.cs
- ToolStripDropDownClosingEventArgs.cs
- InstanceLockLostException.cs
- SiteMapDataSourceView.cs
- Debugger.cs
- FirstMatchCodeGroup.cs
- _ContextAwareResult.cs
- ArglessEventHandlerProxy.cs
- GridViewRow.cs
- EntityDataSourceChangingEventArgs.cs
- BaseTreeIterator.cs
- ContextMenu.cs
- ThemeDictionaryExtension.cs
- DataSvcMapFileSerializer.cs
- QueryReaderSettings.cs
- ScrollData.cs
- AppSettings.cs
- AsymmetricSignatureFormatter.cs
- XmlSchemaDatatype.cs
- ObjectDisposedException.cs
- Compensate.cs
- SortedList.cs
- HistoryEventArgs.cs
- PasswordDeriveBytes.cs
- SettingsPropertyIsReadOnlyException.cs
- ValidatorCollection.cs
- FacetValueContainer.cs
- _SslSessionsCache.cs
- LineMetrics.cs
- AsymmetricKeyExchangeFormatter.cs
- InfoCardBaseException.cs
- CachedCompositeFamily.cs
- WmiPutTraceRecord.cs
- SecurityTokenResolver.cs
- DataShape.cs
- PersonalizationDictionary.cs
- AuthenticodeSignatureInformation.cs
- DataGridCell.cs
- CompiledIdentityConstraint.cs
- EFDataModelProvider.cs
- CopyNodeSetAction.cs
- EmptyStringExpandableObjectConverter.cs
- SpanIndex.cs
- RawStylusSystemGestureInputReport.cs
- SqlDataSource.cs
- HttpHandlersSection.cs
- AdCreatedEventArgs.cs
- OleDbFactory.cs
- Compensate.cs
- ByteStreamMessageEncoder.cs
- DelegateSerializationHolder.cs
- ADConnectionHelper.cs
- _AcceptOverlappedAsyncResult.cs
- MediaTimeline.cs
- WebServiceTypeData.cs
- HtmlTableCell.cs
- MediaSystem.cs