Changeset 122
- Timestamp:
- 3/7/2008 7:26:29 AM (5 years ago)
- Location:
- branches/eraser6/Eraser
- Files:
-
- 4 edited
-
BasePanel.Designer.cs (modified) (2 diffs)
-
BasePanel.cs (modified) (1 diff)
-
MainForm.cs (modified) (1 diff)
-
SettingsPanel.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/BasePanel.Designer.cs
r112 r122 52 52 this.content.Location = new System.Drawing.Point(20, 52); 53 53 this.content.Name = "content"; 54 this.content.Size = new System.Drawing.Size(622, 272);54 this.content.Size = new System.Drawing.Size(622, 377); 55 55 this.content.TabIndex = 3; 56 56 // … … 71 71 this.Name = "BasePanel"; 72 72 this.Padding = new System.Windows.Forms.Padding(17); 73 this.Size = new System.Drawing.Size(662, 344);73 this.Size = new System.Drawing.Size(662, 449); 74 74 ((System.ComponentModel.ISupportInitialize)(this.titleIcon)).EndInit(); 75 75 this.ResumeLayout(false); -
branches/eraser6/Eraser/BasePanel.cs
r112 r122 14 14 { 15 15 InitializeComponent(); 16 Dock = DockStyle.Fill; 16 17 } 17 18 } -
branches/eraser6/Eraser/MainForm.cs
r119 r122 86 86 contentPanel.Controls.Remove(oldPage); 87 87 contentPanel.Controls.Add(CurrPage); 88 CurrPage.Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top; 89 CurrPage.Left = 0; 90 CurrPage.Top = 0; 91 CurrPage.Width = contentPanel.Width; 88 89 if (CurrPage.Dock == DockStyle.None) 90 { 91 CurrPage.Anchor = AnchorStyles.Left | AnchorStyles.Right | 92 AnchorStyles.Top; 93 CurrPage.Left = 0; 94 CurrPage.Top = 0; 95 CurrPage.Width = contentPanel.Width; 96 } 92 97 contentPanel.ResumeLayout(); 93 98 } -
branches/eraser6/Eraser/SettingsPanel.cs
r112 r122 14 14 { 15 15 InitializeComponent(); 16 Dock = DockStyle.None; 16 17 } 17 18 }
Note: See TracChangeset
for help on using the changeset viewer.
