Newer
Older
TIASShot / TIASshot / UI / MemoryMonitorForm.Designer.cs
#if MEMMONITOR
namespace TIASshot {
    partial class MemoryMonitorForm {
        private System.ComponentModel.IContainer components = null;

        protected override void Dispose(bool disposing) {
            if (disposing && (components != null)) {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        private void InitializeComponent() {
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series seriesPrivate = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.DataVisualization.Charting.Series seriesWS = new System.Windows.Forms.DataVisualization.Charting.Series();

            this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.lblCurrent = new System.Windows.Forms.Label();
            this.lblMode = new System.Windows.Forms.Label();
            this.btnStartStop = new System.Windows.Forms.Button();
            this.btnReset = new System.Windows.Forms.Button();
            this.btnSaveCsv = new System.Windows.Forms.Button();
            this.btnOpenFolder = new System.Windows.Forms.Button();
            this.panelButtons = new System.Windows.Forms.Panel();

            ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
            this.panelButtons.SuspendLayout();
            this.SuspendLayout();

            // chart
            chartArea.Name = "ChartArea1";
            chartArea.AxisX.Title = "経過時間 (秒)";
            chartArea.AxisY.Title = "メモリ (GB)";
            chartArea.AxisX.IsStartedFromZero = true;
            chartArea.AxisY.IsStartedFromZero = true;
            this.chart.ChartAreas.Add(chartArea);

            legend.Name = "Legend1";
            this.chart.Legends.Add(legend);

            seriesPrivate.Name = "Private";
            seriesPrivate.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            seriesPrivate.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            seriesPrivate.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            seriesPrivate.BorderWidth = 2;
            seriesPrivate.Color = System.Drawing.Color.DodgerBlue;

            seriesWS.Name = "WorkingSet";
            seriesWS.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Line;
            seriesWS.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            seriesWS.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            seriesWS.BorderWidth = 2;
            seriesWS.Color = System.Drawing.Color.OrangeRed;

            this.chart.Series.Add(seriesPrivate);
            this.chart.Series.Add(seriesWS);
            this.chart.Dock = System.Windows.Forms.DockStyle.Fill;
            this.chart.Name = "chart";
            this.chart.TabIndex = 0;

            // lblMode(Text / ForeColor は MemoryMonitorForm.cs コンストラクタで設定)
            this.lblMode.AutoSize = false;
            this.lblMode.Dock = System.Windows.Forms.DockStyle.Top;
            this.lblMode.Font = new System.Drawing.Font("Consolas", 10F, System.Drawing.FontStyle.Bold);
            this.lblMode.Height = 26;
            this.lblMode.Name = "lblMode";
            this.lblMode.TabIndex = 3;
            this.lblMode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.lblMode.Padding = new System.Windows.Forms.Padding(4, 0, 0, 0);

            // lblCurrent
            this.lblCurrent.AutoSize = false;
            this.lblCurrent.Dock = System.Windows.Forms.DockStyle.Top;
            this.lblCurrent.Font = new System.Drawing.Font("Consolas", 11F, System.Drawing.FontStyle.Bold);
            this.lblCurrent.Height = 32;
            this.lblCurrent.Name = "lblCurrent";
            this.lblCurrent.TabIndex = 1;
            this.lblCurrent.Text = "現在: --- (待機中)";
            this.lblCurrent.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.lblCurrent.Padding = new System.Windows.Forms.Padding(4, 0, 0, 0);

            // panelButtons
            this.btnStartStop.Name = "btnStartStop";
            this.btnStartStop.Size = new System.Drawing.Size(100, 28);
            this.btnStartStop.Location = new System.Drawing.Point(4, 4);
            this.btnStartStop.Text = "停止";
            this.btnStartStop.TabIndex = 0;
            this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);

            this.btnReset.Name = "btnReset";
            this.btnReset.Size = new System.Drawing.Size(80, 28);
            this.btnReset.Location = new System.Drawing.Point(112, 4);
            this.btnReset.Text = "リセット";
            this.btnReset.TabIndex = 1;
            this.btnReset.Click += new System.EventHandler(this.btnReset_Click);

            this.btnSaveCsv.Name = "btnSaveCsv";
            this.btnSaveCsv.Size = new System.Drawing.Size(100, 28);
            this.btnSaveCsv.Location = new System.Drawing.Point(200, 4);
            this.btnSaveCsv.Text = "CSV保存";
            this.btnSaveCsv.TabIndex = 2;
            this.btnSaveCsv.Click += new System.EventHandler(this.btnSaveCsv_Click);

            this.btnOpenFolder.Name = "btnOpenFolder";
            this.btnOpenFolder.Size = new System.Drawing.Size(120, 28);
            this.btnOpenFolder.Location = new System.Drawing.Point(308, 4);
            this.btnOpenFolder.Text = "フォルダを開く";
            this.btnOpenFolder.TabIndex = 3;
            this.btnOpenFolder.Click += new System.EventHandler(this.btnOpenFolder_Click);

            this.panelButtons.Controls.Add(this.btnStartStop);
            this.panelButtons.Controls.Add(this.btnReset);
            this.panelButtons.Controls.Add(this.btnSaveCsv);
            this.panelButtons.Controls.Add(this.btnOpenFolder);
            this.panelButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelButtons.Height = 38;
            this.panelButtons.Name = "panelButtons";
            this.panelButtons.TabIndex = 2;

            // MemoryMonitorForm
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(640, 480);
            this.Controls.Add(this.chart);
            this.Controls.Add(this.lblCurrent);
            this.Controls.Add(this.lblMode);
            this.Controls.Add(this.panelButtons);
            this.Name = "MemoryMonitorForm";
            // Text は MemoryMonitorForm.cs コンストラクタで設定

            ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
            this.panelButtons.ResumeLayout(false);
            this.ResumeLayout(false);
        }

        private System.Windows.Forms.DataVisualization.Charting.Chart chart;
        private System.Windows.Forms.Label lblCurrent;
        private System.Windows.Forms.Label lblMode;
        private System.Windows.Forms.Button btnStartStop;
        private System.Windows.Forms.Button btnReset;
        private System.Windows.Forms.Button btnSaveCsv;
        private System.Windows.Forms.Button btnOpenFolder;
        private System.Windows.Forms.Panel panelButtons;
    }
}
#endif