Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/System.Windows.Forms/src/System/Windows/Forms/Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ public class Form : ContainerControl {
private static readonly int PropMdiWindowListStrip = PropertyStore.CreateKey();
private static readonly int PropMdiControlStrip = PropertyStore.CreateKey();

private static readonly int PropOpacity = PropertyStore.CreateKey();
private static readonly int PropOpacity = PropertyStore.CreateKey();
private static readonly int PropTransparencyKey = PropertyStore.CreateKey();

// Form per instance members
// Note: Do not add anything to this list unless absolutely neccessary.

private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details...
private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details...
private BitVector32 formStateEx = new BitVector32();


Expand All @@ -170,7 +170,7 @@ public class Form : ContainerControl {
private Size minAutoSize = Size.Empty;
private Rectangle restoredWindowBounds = new Rectangle(-1, -1, -1, -1);
private BoundsSpecified restoredWindowBoundsSpecified;
private DialogResult dialogResult;
private DialogResult dialogResult;
private MdiClient ctlClient;
private NativeWindow ownerWindow;
private bool rightToLeftLayout = false;
Expand Down