Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ToolStripSettings.cs / 1 / 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
- ResourceProperty.cs
- RefreshPropertiesAttribute.cs
- ValidatorUtils.cs
- ScriptingRoleServiceSection.cs
- ThrowHelper.cs
- listitem.cs
- Lazy.cs
- PreApplicationStartMethodAttribute.cs
- securitycriticaldata.cs
- DataGridViewImageColumn.cs
- NaturalLanguageHyphenator.cs
- WebPartEditorOkVerb.cs
- WhitespaceRuleReader.cs
- DbConnectionPoolOptions.cs
- SortedList.cs
- BitHelper.cs
- Section.cs
- ErrorsHelper.cs
- InsufficientMemoryException.cs
- Html32TextWriter.cs
- FontTypeConverter.cs
- oledbmetadatacolumnnames.cs
- EntityContainerAssociationSet.cs
- ResetableIterator.cs
- SinglePhaseEnlistment.cs
- ToolStripMenuItem.cs
- TabControl.cs
- DecimalAnimationBase.cs
- Semaphore.cs
- CompilerTypeWithParams.cs
- SchemaTableColumn.cs
- ObjectDataSourceDisposingEventArgs.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- Comparer.cs
- ContractComponent.cs
- RolePrincipal.cs
- ZoneMembershipCondition.cs
- MultiByteCodec.cs
- DWriteFactory.cs
- ServiceDescriptionSerializer.cs
- WorkerRequest.cs
- DataMemberAttribute.cs
- ResourceDescriptionAttribute.cs
- GridLength.cs
- HttpDebugHandler.cs
- BitmapImage.cs
- ArraySet.cs
- CharEntityEncoderFallback.cs
- AliasedSlot.cs
- Method.cs
- MimeWriter.cs
- QilInvokeEarlyBound.cs
- XmlTypeMapping.cs
- MessageContractExporter.cs
- IndexOutOfRangeException.cs
- recordstate.cs
- ValueQuery.cs
- DynamicDataExtensions.cs
- StandardBindingReliableSessionElement.cs
- DrawingState.cs
- RefType.cs
- PerfCounterSection.cs
- MessageSmuggler.cs
- DomNameTable.cs
- SynchronizedDispatch.cs
- FigureParaClient.cs
- ValidationEventArgs.cs
- COM2PictureConverter.cs
- FileUtil.cs
- Type.cs
- LogArchiveSnapshot.cs
- DrawingAttributes.cs
- MediaTimeline.cs
- RedirectionProxy.cs
- HtmlControl.cs
- TableHeaderCell.cs
- SafeEventLogReadHandle.cs
- TaskFileService.cs
- HiddenField.cs
- DefaultDiscoveryService.cs
- XMLDiffLoader.cs
- CollectionViewSource.cs
- CompilerGeneratedAttribute.cs
- ElasticEase.cs
- Drawing.cs
- DataGridViewBand.cs
- manifestimages.cs
- BackgroundWorker.cs
- WebPartCancelEventArgs.cs
- FixedPageStructure.cs
- HWStack.cs
- XamlToRtfParser.cs
- CqlGenerator.cs
- FileCodeGroup.cs
- ImageResources.Designer.cs
- RegexReplacement.cs
- figurelength.cs
- MeshGeometry3D.cs
- NoneExcludedImageIndexConverter.cs
- SqlUserDefinedTypeAttribute.cs