mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
77e8e84d51
* added more detailed options for plotter's text rendering * made plotter (truly) double-buffered * finished performance and statistics tabs git-svn-id: svn://svn.code.sf.net/p/processhacker/code@450 21ef857c-d57f-4fe0-8362-d861dc6d29cd
51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
namespace ProcessHacker.Components
|
|
{
|
|
partial class Plotter
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
|
|
if (_managedBackBuffer != NO_MANAGED_BACK_BUFFER)
|
|
_managedBackBuffer.Dispose();
|
|
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.SuspendLayout();
|
|
//
|
|
// Plotter
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Name = "Plotter";
|
|
this.Paint += new System.Windows.Forms.PaintEventHandler(this.Plotter_Paint);
|
|
this.Resize += new System.EventHandler(this.Plotter_Resize);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|