| File: System\Windows\Forms\Design\PrintDialogDesigner.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms.Design\src\System.Windows.Forms.Design.csproj (System.Windows.Forms.Design) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; using System.ComponentModel.Design; namespace System.Windows.Forms.Design; internal class PrintDialogDesigner : ComponentDesigner { /// <summary> /// This method is called when a component is first initialized, typically after being first added /// to a design surface. The defaultValues property contains a name/value dictionary of default /// values that should be applied to properties. This dictionary may be null if no default values /// are specified. You may perform any initialization of this component that you like, and you /// may even ignore the defaultValues dictionary altogether if you wish. /// The default implementation of this method does nothing. /// </summary> public override void InitializeNewComponent(IDictionary? defaultValues) { if (Component is PrintDialog dialog) { dialog.UseEXDialog = true; } } }