Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / MDIControlStrip.cs / 1305376 / MDIControlStrip.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Security; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using System.Diagnostics; using System.Runtime.InteropServices; using System.Runtime.Versioning; ///this is the toolstrip used for merging the [:)] [_][#][X] buttons onto an /// mdi parent when an MDI child is maximized. /// internal class MdiControlStrip : MenuStrip { private ToolStripMenuItem system; private ToolStripMenuItem close; private ToolStripMenuItem minimize; private ToolStripMenuItem restore; private MenuStrip mergedMenu; private IWin32Window target; ///target is ideally the MDI Child to send the system commands to. /// although there's nothing MDI child specific to it... you could have this /// a toplevel window. /// public MdiControlStrip(IWin32Window target) { IntPtr hMenu= UnsafeNativeMethods.GetSystemMenu(new HandleRef(this, Control.GetSafeHandle(target)), /*bRevert=*/false); this.target = target; // The menu item itself takes care of enabledness and sending WM_SYSCOMMAND messages to the target. minimize = new ControlBoxMenuItem(hMenu, NativeMethods.SC_MINIMIZE, target); close = new ControlBoxMenuItem(hMenu, NativeMethods.SC_CLOSE, target); restore = new ControlBoxMenuItem(hMenu, NativeMethods.SC_RESTORE, target); // The dropDown of the system menu is the one that talks to native. system = new SystemMenuItem(); // However in the event that the target handle changes we have to push the new handle into everyone. Control controlTarget = target as Control; if (controlTarget != null) { controlTarget.HandleCreated += new EventHandler(OnTargetWindowHandleRecreated); controlTarget.Disposed += new EventHandler(OnTargetWindowDisposed); } // add in opposite order to how you want it merged this.Items.AddRange(new ToolStripItem[] { minimize, restore,close, system }); this.SuspendLayout(); foreach (ToolStripItem item in this.Items) { item.DisplayStyle = ToolStripItemDisplayStyle.Image; item.MergeIndex = 0; item.MergeAction = MergeAction.Insert; item.Overflow = ToolStripItemOverflow.Never; item.Alignment = ToolStripItemAlignment.Right; item.Padding = Padding.Empty; } // set up the sytem menu system.Image = GetTargetWindowIcon(); system.Alignment = ToolStripItemAlignment.Left; system.DropDownOpening += new EventHandler(OnSystemMenuDropDownOpening); system.ImageScaling = ToolStripItemImageScaling.None; system.DoubleClickEnabled = true; system.DoubleClick += new EventHandler(OnSystemMenuDoubleClick); system.Padding = Padding.Empty; system.ShortcutKeys = Keys.Alt | Keys.OemMinus; this.ResumeLayout(false); } #region Buttons /* Unused public ToolStripMenuItem System { get { return system; } } */ public ToolStripMenuItem Close { get { return close; } } /* Unused public ToolStripMenuItem Minimize { get { return minimize; } } public ToolStripMenuItem Restore { get { return restore; } } */ #endregion internal MenuStrip MergedMenu { get { return mergedMenu; } set { mergedMenu = value; } } /* PERF: consider shutting off layout #region ShutOffLayout protected override void OnLayout(LayoutEventArgs e) { return; // if someone attempts } protected override Size GetPreferredSize(Size proposedSize) { return Size.Empty; } #endregion */ [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2106:SecureAsserts")] [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] private Image GetTargetWindowIcon() { Image systemIcon = null; IntPtr hIcon = UnsafeNativeMethods.SendMessage(new HandleRef(this, Control.GetSafeHandle(target)), NativeMethods.WM_GETICON, NativeMethods.ICON_SMALL, 0); IntSecurity.ObjectFromWin32Handle.Assert(); try { Icon icon = (hIcon != IntPtr.Zero) ? Icon.FromHandle(hIcon) : Form.DefaultIcon; Icon smallIcon = new Icon(icon, SystemInformation.SmallIconSize); systemIcon = smallIcon.ToBitmap(); smallIcon.Dispose(); } finally { CodeAccessPermission.RevertAssert(); } return systemIcon; } protected internal override void OnItemAdded(ToolStripItemEventArgs e) { base.OnItemAdded(e); Debug.Assert(Items.Count <= 4, "Too many items in the MDIControlStrip. How did we get into this situation?"); } private void OnTargetWindowDisposed(object sender, EventArgs e) { UnhookTarget(); target = null; } private void OnTargetWindowHandleRecreated(object sender, EventArgs e) { // in the case that the handle for the form is recreated we need to set // up the handles to point to the new window handle for the form. system.SetNativeTargetWindow(target); minimize.SetNativeTargetWindow(target); close.SetNativeTargetWindow(target); restore.SetNativeTargetWindow(target); IntPtr hMenu= UnsafeNativeMethods.GetSystemMenu(new HandleRef(this, Control.GetSafeHandle(target)), /*bRevert=*/false); system.SetNativeTargetMenu(hMenu); minimize.SetNativeTargetMenu(hMenu); close.SetNativeTargetMenu(hMenu); restore.SetNativeTargetMenu(hMenu); // clear off the System DropDown. if (system.HasDropDownItems) { // next time we need one we'll just fetch it fresh. system.DropDown.Items.Clear(); system.DropDown.Dispose(); } system.Image = GetTargetWindowIcon(); } private void OnSystemMenuDropDownOpening(object sender, EventArgs e) { if (!system.HasDropDownItems && (target != null)) { system.DropDown = ToolStripDropDownMenu.FromHMenu(UnsafeNativeMethods.GetSystemMenu(new HandleRef(this, Control.GetSafeHandle(target)), /*bRevert=*/false), target); } else if (MergedMenu == null) { system.DropDown.Dispose(); } } private void OnSystemMenuDoubleClick(object sender, EventArgs e) { Close.PerformClick(); } protected override void Dispose(bool disposing) { if (disposing) { UnhookTarget(); target = null; } base.Dispose(disposing); } private void UnhookTarget() { if (target != null) { Control controlTarget = target as Control; if (controlTarget != null) { controlTarget.HandleCreated -= new EventHandler(OnTargetWindowHandleRecreated); controlTarget.Disposed -= new EventHandler(OnTargetWindowDisposed); } target = null; } } // when the system menu item shortcut is evaluated - pop the dropdown internal class ControlBoxMenuItem : ToolStripMenuItem { internal ControlBoxMenuItem(IntPtr hMenu, int nativeMenuCommandId, IWin32Window targetWindow) : base(hMenu, nativeMenuCommandId, targetWindow) { } internal override bool CanKeyboardSelect { get { return false; } } } // when the system menu item shortcut is evaluated - pop the dropdown internal class SystemMenuItem : ToolStripMenuItem { public SystemMenuItem(){ } protected internal override bool ProcessCmdKey(ref Message m, Keys keyData) { if (Visible && ShortcutKeys == keyData) { ShowDropDown(); this.DropDown.SelectNextToolStripItem(null, true); return true; } return base.ProcessCmdKey(ref m, keyData); } protected override void OnOwnerChanged(EventArgs e) { if (HasDropDownItems && DropDown.Visible) { HideDropDown(); } base.OnOwnerChanged(e); } } } } // 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
- MexBindingBindingCollectionElement.cs
- DoubleConverter.cs
- DbConnectionPool.cs
- MenuItemBinding.cs
- ToolboxService.cs
- MimePart.cs
- XPathNode.cs
- AlternateViewCollection.cs
- PageCodeDomTreeGenerator.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- CaseExpr.cs
- _DigestClient.cs
- XmlIncludeAttribute.cs
- EventLogReader.cs
- DataGridViewCellStateChangedEventArgs.cs
- CmsUtils.cs
- ActivityExecutionContextCollection.cs
- ConnectionPoolManager.cs
- UserControlBuildProvider.cs
- CursorConverter.cs
- DefaultTypeArgumentAttribute.cs
- SymLanguageType.cs
- EventItfInfo.cs
- NotificationContext.cs
- ContractSearchPattern.cs
- PathSegment.cs
- HttpCacheVary.cs
- ImageListImage.cs
- BrushValueSerializer.cs
- SaveFileDialog.cs
- DateTimeOffsetStorage.cs
- GifBitmapEncoder.cs
- ComNativeDescriptor.cs
- SerializationSectionGroup.cs
- ViewCellSlot.cs
- OperationAbortedException.cs
- ReferentialConstraint.cs
- ShellProvider.cs
- ColumnWidthChangingEvent.cs
- SimpleLine.cs
- UnauthorizedWebPart.cs
- QilInvoke.cs
- MembershipSection.cs
- _RequestCacheProtocol.cs
- EditCommandColumn.cs
- VBIdentifierDesigner.xaml.cs
- FlowchartDesigner.Helpers.cs
- ResourceDescriptionAttribute.cs
- Profiler.cs
- X500Name.cs
- TreeNodeCollectionEditorDialog.cs
- PeerNearMe.cs
- SessionStateUtil.cs
- ListBoxItemAutomationPeer.cs
- DataGridPageChangedEventArgs.cs
- FloatSumAggregationOperator.cs
- ModuleBuilder.cs
- ResourceSet.cs
- FilterableAttribute.cs
- FileEnumerator.cs
- PasswordBox.cs
- MarkupExtensionReturnTypeAttribute.cs
- VisualProxy.cs
- MarshalByRefObject.cs
- TypeReference.cs
- RegionData.cs
- GridViewColumnCollection.cs
- TreeNodeStyleCollectionEditor.cs
- PackWebResponse.cs
- XmlSchemaAll.cs
- DataTemplateSelector.cs
- ObjectConverter.cs
- ProjectionCamera.cs
- sqlser.cs
- NonSerializedAttribute.cs
- ApplicationException.cs
- BaseAddressElement.cs
- XmlSchemaAttribute.cs
- SHA1.cs
- DecimalAverageAggregationOperator.cs
- ProtocolsConfiguration.cs
- ObjectQueryState.cs
- HttpProfileBase.cs
- EmptyReadOnlyDictionaryInternal.cs
- StubHelpers.cs
- Function.cs
- UnmanagedMemoryStream.cs
- DataGridCaption.cs
- GeneralTransform3DGroup.cs
- SafeNativeMethods.cs
- InstanceDataCollection.cs
- WmpBitmapDecoder.cs
- EnumerableCollectionView.cs
- XamlToRtfWriter.cs
- RegexCompilationInfo.cs
- TreeNodeClickEventArgs.cs
- ObjectDataSourceFilteringEventArgs.cs
- PresentationTraceSources.cs
- DefinitionUpdate.cs
- FixedPage.cs