| File: System\Windows\Forms\Layout\DockStyle.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; using System.Drawing.Design; namespace System.Windows.Forms; /// <summary> /// Control Dock values. /// When a control is docked to an edge of it's container it will /// always be positioned flush against that edge while the container /// resizes. If more than one control is docked to an edge, the controls /// will not be placed on top of each other. /// </summary> [Editor($"System.Windows.Forms.Design.DockEditor, {Assemblies.SystemDesign}", typeof(UITypeEditor))] public enum DockStyle { None, Top, Bottom, Left, Right, Fill, }