Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / View / WindowExtensionMethods.cs / 1305376 / WindowExtensionMethods.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.View { using System.Runtime.InteropServices; using System.Windows; using System.Windows.Interop; static class WindowExtensionMethods { public static void ShowContextHelpButton(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr exStyle = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_EXSTYLE); if (IntPtr.Size == 4) { exStyle = new IntPtr(exStyle.ToInt32() | Win32Interop.WS_EX_CONTEXTHELP); } else { exStyle = new IntPtr(exStyle.ToInt64() | ((long)Win32Interop.WS_EX_CONTEXTHELP)); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_EXSTYLE, exStyle); } public static void HideMinMaxButton(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr style = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_STYLE); if (IntPtr.Size == 4) { int intValue = style.ToInt32(); intValue = SetBit(Win32Interop.WS_MAXIMIZEBOX, intValue, false); intValue = SetBit(Win32Interop.WS_MINIMIZEBOX, intValue, false); style = new IntPtr(intValue); } else { long longValue = style.ToInt64(); longValue = SetBit((long)Win32Interop.WS_MAXIMIZEBOX, longValue, false); longValue = SetBit((long)Win32Interop.WS_MINIMIZEBOX, longValue, false); style = new IntPtr(longValue); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_STYLE, style); } public static void AddWindowsHook(this Window window, HwndSourceHook wmHandler) { IntPtr hwnd = new WindowInteropHelper(window).Handle; HwndSource source = HwndSource.FromHwnd(hwnd); source.AddHook(wmHandler); } public static void RemoveWindowsHook(this Window window, HwndSourceHook wmHandler) { IntPtr hwnd = new WindowInteropHelper(window).Handle; HwndSource source = HwndSource.FromHwnd(hwnd); source.RemoveHook(wmHandler); } public static void HideIcon(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr exStyle = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_EXSTYLE); if (IntPtr.Size == 4) { exStyle = new IntPtr(exStyle.ToInt32() | Win32Interop.WS_EX_DLGMODALFRAME); } else { exStyle = new IntPtr(exStyle.ToInt64() | ((long)Win32Interop.WS_EX_DLGMODALFRAME)); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_EXSTYLE, exStyle); Win32Interop.SendMessage(hwnd, Win32Interop.WM_SETICON, new IntPtr(Win32Interop.ICON_SMALL), IntPtr.Zero); Win32Interop.SendMessage(hwnd, Win32Interop.WM_SETICON, new IntPtr(Win32Interop.ICON_BIG), IntPtr.Zero); } private static long SetBit(long mask, long value, bool flag) { if (flag) { return value | mask; } else { return value & ~mask; } } private static int SetBit(int mask, int value, bool flag) { if (flag) { return value | mask; } else { return value & ~mask; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.View { using System.Runtime.InteropServices; using System.Windows; using System.Windows.Interop; static class WindowExtensionMethods { public static void ShowContextHelpButton(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr exStyle = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_EXSTYLE); if (IntPtr.Size == 4) { exStyle = new IntPtr(exStyle.ToInt32() | Win32Interop.WS_EX_CONTEXTHELP); } else { exStyle = new IntPtr(exStyle.ToInt64() | ((long)Win32Interop.WS_EX_CONTEXTHELP)); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_EXSTYLE, exStyle); } public static void HideMinMaxButton(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr style = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_STYLE); if (IntPtr.Size == 4) { int intValue = style.ToInt32(); intValue = SetBit(Win32Interop.WS_MAXIMIZEBOX, intValue, false); intValue = SetBit(Win32Interop.WS_MINIMIZEBOX, intValue, false); style = new IntPtr(intValue); } else { long longValue = style.ToInt64(); longValue = SetBit((long)Win32Interop.WS_MAXIMIZEBOX, longValue, false); longValue = SetBit((long)Win32Interop.WS_MINIMIZEBOX, longValue, false); style = new IntPtr(longValue); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_STYLE, style); } public static void AddWindowsHook(this Window window, HwndSourceHook wmHandler) { IntPtr hwnd = new WindowInteropHelper(window).Handle; HwndSource source = HwndSource.FromHwnd(hwnd); source.AddHook(wmHandler); } public static void RemoveWindowsHook(this Window window, HwndSourceHook wmHandler) { IntPtr hwnd = new WindowInteropHelper(window).Handle; HwndSource source = HwndSource.FromHwnd(hwnd); source.RemoveHook(wmHandler); } public static void HideIcon(this Window window) { IntPtr hwnd = new WindowInteropHelper(window).Handle; IntPtr exStyle = Win32Interop.GetWindowLongPtr(hwnd, Win32Interop.GWL_EXSTYLE); if (IntPtr.Size == 4) { exStyle = new IntPtr(exStyle.ToInt32() | Win32Interop.WS_EX_DLGMODALFRAME); } else { exStyle = new IntPtr(exStyle.ToInt64() | ((long)Win32Interop.WS_EX_DLGMODALFRAME)); } Win32Interop.SetWindowLongPtr(new HandleRef(window, hwnd), Win32Interop.GWL_EXSTYLE, exStyle); Win32Interop.SendMessage(hwnd, Win32Interop.WM_SETICON, new IntPtr(Win32Interop.ICON_SMALL), IntPtr.Zero); Win32Interop.SendMessage(hwnd, Win32Interop.WM_SETICON, new IntPtr(Win32Interop.ICON_BIG), IntPtr.Zero); } private static long SetBit(long mask, long value, bool flag) { if (flag) { return value | mask; } else { return value & ~mask; } } private static int SetBit(int mask, int value, bool flag) { if (flag) { return value | mask; } else { return value & ~mask; } } } } // 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
- DependencyProperty.cs
- ListItemParagraph.cs
- TargetConverter.cs
- ApplicationServiceHelper.cs
- SecUtil.cs
- EventLogException.cs
- KoreanLunisolarCalendar.cs
- AutomationFocusChangedEventArgs.cs
- XmlnsCache.cs
- ZipIOModeEnforcingStream.cs
- WebPartMovingEventArgs.cs
- RuleRef.cs
- SchemaElement.cs
- ConstNode.cs
- ComplexLine.cs
- InternalConfigHost.cs
- ResourceSet.cs
- Debug.cs
- WebPartManagerDesigner.cs
- LoggedException.cs
- Transform3D.cs
- GradientStop.cs
- AlignmentYValidation.cs
- ItemCollection.cs
- EntityDataReader.cs
- EventMap.cs
- XmlReaderSettings.cs
- XmlSchemaObjectCollection.cs
- WorkflowTerminatedException.cs
- ProbeMatchesMessage11.cs
- GraphicsState.cs
- XPathExpr.cs
- SingleSelectRootGridEntry.cs
- GroupQuery.cs
- SqlTransaction.cs
- XmlWhitespace.cs
- AlphabeticalEnumConverter.cs
- ValidationErrorEventArgs.cs
- XmlSchemaSequence.cs
- SerializationSectionGroup.cs
- CompilerInfo.cs
- ResumeStoryboard.cs
- MultipleFilterMatchesException.cs
- ToolStripContainer.cs
- InitiatorSessionSymmetricMessageSecurityProtocol.cs
- XmlSortKeyAccumulator.cs
- ApplicationCommands.cs
- TextDecoration.cs
- SqlLiftWhereClauses.cs
- DesignTableCollection.cs
- Message.cs
- StreamGeometryContext.cs
- DirectoryInfo.cs
- WmlLabelAdapter.cs
- VisualSerializer.cs
- CrossSiteScriptingValidation.cs
- ConsoleCancelEventArgs.cs
- SymmetricAlgorithm.cs
- _SSPIWrapper.cs
- UserMapPath.cs
- WebUtil.cs
- WebPartCancelEventArgs.cs
- VectorAnimation.cs
- ProxyWebPart.cs
- ResolveNameEventArgs.cs
- AbstractSvcMapFileLoader.cs
- ImageCodecInfoPrivate.cs
- FontCacheUtil.cs
- VScrollProperties.cs
- DictionaryEntry.cs
- ResourceDisplayNameAttribute.cs
- DayRenderEvent.cs
- coordinator.cs
- XmlSchemaAnyAttribute.cs
- HtmlHead.cs
- CapabilitiesPattern.cs
- HtmlSelect.cs
- PriorityRange.cs
- ColorMatrix.cs
- GeneralTransform.cs
- AssociationSetMetadata.cs
- MonitoringDescriptionAttribute.cs
- TableCell.cs
- SettingsAttributeDictionary.cs
- BindingOperations.cs
- RegistrySecurity.cs
- OneWayBindingElementImporter.cs
- TaskFormBase.cs
- ThreadStateException.cs
- FtpRequestCacheValidator.cs
- OutputBuffer.cs
- Boolean.cs
- Encoding.cs
- propertytag.cs
- Site.cs
- CapabilitiesUse.cs
- KnownIds.cs
- GridPatternIdentifiers.cs
- WebGetAttribute.cs
- EntityDataSourceUtil.cs