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
- PaperSize.cs
- CompiledQuery.cs
- ChannelDispatcherCollection.cs
- RoutedEventConverter.cs
- ExceptionValidationRule.cs
- WsatAdminException.cs
- UTF8Encoding.cs
- unitconverter.cs
- EntityFrameworkVersions.cs
- FillErrorEventArgs.cs
- SystemUdpStatistics.cs
- HMACSHA512.cs
- GlyphTypeface.cs
- SetStoryboardSpeedRatio.cs
- OrderedDictionaryStateHelper.cs
- ActionItem.cs
- SecureStringHasher.cs
- WindowInteropHelper.cs
- RegistryKey.cs
- Brushes.cs
- UserControl.cs
- XmlQueryOutput.cs
- BindingExpressionBase.cs
- ExpressionPrefixAttribute.cs
- DefaultValueConverter.cs
- XmlILTrace.cs
- EpmSourcePathSegment.cs
- RuntimeWrappedException.cs
- FrameworkElement.cs
- ConstrainedGroup.cs
- TextElementEnumerator.cs
- Table.cs
- PeerApplication.cs
- DocumentsTrace.cs
- AppSecurityManager.cs
- CreateUserWizard.cs
- EntityTypeBase.cs
- RuntimeConfigurationRecord.cs
- GradientStop.cs
- DataGridLinkButton.cs
- DataErrorValidationRule.cs
- embossbitmapeffect.cs
- TableRowGroupCollection.cs
- XmlUtil.cs
- Bidi.cs
- InlineObject.cs
- ObjectResult.cs
- CompiledRegexRunnerFactory.cs
- Sentence.cs
- SerializationBinder.cs
- RegexInterpreter.cs
- SoapSchemaImporter.cs
- TransportOutputChannel.cs
- SrgsItemList.cs
- GridViewRow.cs
- RecordsAffectedEventArgs.cs
- ConfigurationSettings.cs
- KeyValueInternalCollection.cs
- AsymmetricSecurityBindingElement.cs
- CancellationTokenRegistration.cs
- Table.cs
- ExceptionList.cs
- NameService.cs
- TemplateField.cs
- ExpandCollapseProviderWrapper.cs
- TdsParser.cs
- ScrollBarAutomationPeer.cs
- webproxy.cs
- TaskHelper.cs
- WebConvert.cs
- EditorPartChrome.cs
- GlyphInfoList.cs
- ListViewPagedDataSource.cs
- ToolStripSplitStackLayout.cs
- OpCopier.cs
- IntAverageAggregationOperator.cs
- TabOrder.cs
- ProfileProvider.cs
- IriParsingElement.cs
- DataGridTextBoxColumn.cs
- CodeGen.cs
- RuleSettingsCollection.cs
- MulticastDelegate.cs
- XmlAttributes.cs
- ListManagerBindingsCollection.cs
- ComponentConverter.cs
- SessionParameter.cs
- PeerContact.cs
- HttpConfigurationContext.cs
- ListViewDeleteEventArgs.cs
- BinHexDecoder.cs
- WebMethodAttribute.cs
- ThreadStaticAttribute.cs
- StylusPointProperty.cs
- InstallerTypeAttribute.cs
- DefaultValueConverter.cs
- RemotingException.cs
- AjaxFrameworkAssemblyAttribute.cs
- MenuAdapter.cs
- SoapFormatterSinks.cs