Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / Printing / Win32PrintDialog.cs / 1 / Win32PrintDialog.cs
// Microsoft Avalon // Copyright (c) Microsoft Corporation, 2005 // // File: Win32PrintDialog.cs // // 05/24/2003 : [....] - created // //------------------------------------------------------------------------------ using System; using System.Drawing.Printing; using System.Printing.Interop; using System.Printing; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Windows.Controls; namespace MS.Internal.Printing { ////// This entire class is implemented in this file. However, the class /// is marked partial because this class utilizes/implements a marshaler /// class that is private to it in another file. The object is called /// PrintDlgExMarshaler and warranted its own file. /// internal partial class Win32PrintDialog { #region Constructor ////// Constructs an instance of the Win32PrintDialog. This class is used for /// displaying the Win32 PrintDlgEx dialog and obtaining a user selected /// printer and PrintTicket for a print operation. /// ////// Critical: - Sets critical data. /// TreatAsSafe: - Sets the critical data to null for initialization. /// [SecurityCritical, SecurityTreatAsSafe] public Win32PrintDialog() { _printTicket = null; _printQueue = null; _minPage = 1; _maxPage = 9999; _pageRangeSelection = PageRangeSelection.AllPages; } #endregion Constructor #region Internal methods ////// Displays a modal Win32 print dialog to allow the user to select the desired /// printer and set the printing options. The data generated by this method /// can be accessed via the properties on the instance of this class. /// ////// Critical: - Create an instance of a critical class, calls critical /// methods on that instance, and retrieves critical properties. /// TreatAsSafe: - This code simply displays a WIN32 based dialog, gets the /// print settings from the user, and saves the data away as /// critical. The "unsafe" data that does into the unmanaged /// are properties marked critical (PrintTicket and PrintQueue) /// on this class. The other data that enters the unmanaged /// API are values that are integer based and uninteresting so /// therefore are not critical (MinPage, MaxPage, and page range /// values. Any data that is created by this method that is /// considered unsafe is marked critical. There are 2 properties /// that are extracted from the unmanaged call that are not considered /// critical. These are _pageRange and _pageRangeSelection. We do not /// care if these are exposed since the data means nothing except to /// the code that is doing the printing. /// [SecurityCritical, SecurityTreatAsSafe] internal UInt32 ShowDialog() { UInt32 result = NativeMethods.PD_RESULT_CANCEL; // // Get the process main window handle // IntPtr owner = IntPtr.Zero; if ((System.Windows.Application.Current != null) && (System.Windows.Application.Current.MainWindow != null)) { System.Windows.Interop.WindowInteropHelper helper = new System.Windows.Interop.WindowInteropHelper(System.Windows.Application.Current.MainWindow); owner = helper.CriticalHandle; } // // Create a PrintDlgEx instance to invoke the Win32 Print Dialog // using (PrintDlgExMarshaler printDlgEx = new PrintDlgExMarshaler(owner, this)) { printDlgEx.SyncToStruct(); // // Display the Win32 print dialog // Int32 hr = UnsafeNativeMethods.PrintDlgEx(printDlgEx.UnmanagedPrintDlgEx); if (hr == MS.Win32.NativeMethods.S_OK) { result = printDlgEx.SyncFromStruct(); } } return result; } #endregion Internal methods #region Internal properties ////// Critical: Accesses critical data. /// internal PrintTicket PrintTicket { [SecurityCritical] get { return _printTicket; } [SecurityCritical] set { _printTicket = value; } } ////// Critical: Accesses critical data. /// internal PrintQueue PrintQueue { [SecurityCritical] get { return _printQueue; } [SecurityCritical] set { _printQueue = value; } } ////// Gets or sets the minimum page number allowed in the page ranges. /// internal UInt32 MinPage { get { return _minPage; } set { _minPage = value; } } ////// Gets or sets the maximum page number allowed in the page ranges. /// internal UInt32 MaxPage { get { return _maxPage; } set { _maxPage = value; } } ////// Gets or Sets the PageRangeSelection option for the print dialog. /// internal PageRangeSelection PageRangeSelection { get { return _pageRangeSelection; } set { _pageRangeSelection = value; } } ////// Gets or sets a PageRange objects used when the PageRangeSelection /// option is set to UserPages. /// internal PageRange PageRange { get { return _pageRange; } set { _pageRange = value; } } ////// Gets or sets a flag to enable/disable the page range control on the dialog. /// internal bool PageRangeEnabled { get { return _pageRangeEnabled; } set { _pageRangeEnabled = value; } } #endregion Internal properties #region Private data ////// Critical: This is the print ticket used for printing /// the current job. It is critical because it /// could contains some user sensitive data /// [SecurityCritical] private PrintTicket _printTicket; ////// Critical: This is an object that represents a print queue. /// Any code that has access to this object has the /// potential to print jobs to this printer so it is /// a critical system resource. /// [SecurityCritical] private PrintQueue _printQueue; private PageRangeSelection _pageRangeSelection; private PageRange _pageRange; private bool _pageRangeEnabled; private UInt32 _minPage; private UInt32 _maxPage; #endregion Private data } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SchemaExporter.cs
- InvalidDataContractException.cs
- WindowsToolbarAsMenu.cs
- CreateParams.cs
- HtmlElement.cs
- SerializationSectionGroup.cs
- SrgsRule.cs
- DesignerDataTableBase.cs
- designeractionbehavior.cs
- DetailsViewInsertEventArgs.cs
- InteropExecutor.cs
- ObjectStateManager.cs
- AllowedAudienceUriElement.cs
- SplitterEvent.cs
- GenericAuthenticationEventArgs.cs
- SHA512Managed.cs
- PasswordTextContainer.cs
- ValueType.cs
- AlignmentXValidation.cs
- DataSet.cs
- PropertyNames.cs
- DelimitedListTraceListener.cs
- SpotLight.cs
- HttpRuntimeSection.cs
- SqlMultiplexer.cs
- Int16.cs
- CompiledXpathExpr.cs
- ReadOnlyPropertyMetadata.cs
- ColorConvertedBitmapExtension.cs
- ObjectHandle.cs
- ThreadLocal.cs
- XmlSchemaAppInfo.cs
- MULTI_QI.cs
- AssemblyEvidenceFactory.cs
- DelayedRegex.cs
- RNGCryptoServiceProvider.cs
- ConsoleTraceListener.cs
- ResXBuildProvider.cs
- TypeGeneratedEventArgs.cs
- Completion.cs
- GroupBoxRenderer.cs
- AsymmetricSecurityBindingElement.cs
- UnicodeEncoding.cs
- altserialization.cs
- Executor.cs
- DataSourceCacheDurationConverter.cs
- MailDefinition.cs
- DataKey.cs
- BufferedStream2.cs
- PathData.cs
- ObjectComplexPropertyMapping.cs
- XhtmlConformanceSection.cs
- ComponentEvent.cs
- HttpListenerPrefixCollection.cs
- TempFiles.cs
- RelationshipConstraintValidator.cs
- SqlCacheDependencySection.cs
- CodeObjectCreateExpression.cs
- ToolStripItem.cs
- InternalDispatchObject.cs
- ArglessEventHandlerProxy.cs
- DeliveryRequirementsAttribute.cs
- ProcessHostMapPath.cs
- TableLayoutStyleCollection.cs
- LabelLiteral.cs
- CustomPopupPlacement.cs
- NameScopePropertyAttribute.cs
- BaseCollection.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- DebugHandleTracker.cs
- PointConverter.cs
- HMACMD5.cs
- RootBrowserWindow.cs
- ExpressionConverter.cs
- ForwardPositionQuery.cs
- DBSqlParserTable.cs
- StoreContentChangedEventArgs.cs
- X509CertificateTrustedIssuerElement.cs
- SqlIdentifier.cs
- CompiledXpathExpr.cs
- SendKeys.cs
- SoapHelper.cs
- CodeMethodReturnStatement.cs
- DataServiceQueryProvider.cs
- ImageList.cs
- InputLangChangeEvent.cs
- BindStream.cs
- EntityProviderServices.cs
- TransformedBitmap.cs
- Rect3D.cs
- SafePointer.cs
- ImageClickEventArgs.cs
- PolyLineSegmentFigureLogic.cs
- COM2EnumConverter.cs
- DelegatingTypeDescriptionProvider.cs
- CodeDomSerializerBase.cs
- TrailingSpaceComparer.cs
- FatalException.cs
- ActiveDesignSurfaceEvent.cs
- StylusPointCollection.cs