Browse Source

More high-DPI fixes.

pull/469/head
Daniel Grunwald 11 years ago
parent
commit
929fc8e4f1
  1. 3
      src/AddIns/Debugger/Debugger.AddIn/Service/DebuggeeExceptionForm.Designer.cs
  2. 3
      src/AddIns/DisplayBindings/IconEditor/EditorPanel.Designer.cs

3
src/AddIns/Debugger/Debugger.AddIn/Service/DebuggeeExceptionForm.Designer.cs generated

@ -47,6 +47,7 @@ namespace ICSharpCode.SharpDevelop.Services
this.pictureBox.Size = new System.Drawing.Size(48, 52); this.pictureBox.Size = new System.Drawing.Size(48, 52);
this.pictureBox.TabIndex = 0; this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false; this.pictureBox.TabStop = false;
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
// //
// lblExceptionText // lblExceptionText
// //
@ -113,6 +114,8 @@ namespace ICSharpCode.SharpDevelop.Services
// //
// DebuggeeExceptionForm // DebuggeeExceptionForm
// //
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.ClientSize = new System.Drawing.Size(642, 399); this.ClientSize = new System.Drawing.Size(642, 399);
this.Controls.Add(this.btnContinue); this.Controls.Add(this.btnContinue);
this.Controls.Add(this.btnBreak); this.Controls.Add(this.btnBreak);

3
src/AddIns/DisplayBindings/IconEditor/EditorPanel.Designer.cs generated

@ -137,7 +137,8 @@ namespace ICSharpCode.IconEditor
// //
// EditorPanel // EditorPanel
// //
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.Controls.Add(this.table); this.Controls.Add(this.table);
this.Controls.Add(this.panel2); this.Controls.Add(this.panel2);
this.Name = "EditorPanel"; this.Name = "EditorPanel";

Loading…
Cancel
Save