/
artem_ivanov
/
Matrices
Обзор
Документация
Войти
/
artem_ivanov
/
Matrices
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
WindowsFormsMatrixes/HistogramForm.Designer.cs
62 строки
3 KB
Artyom Ivanov
добавлены хистограммы
21 апр 2023, 17:21
21 апр 2023, 17:21
4ffc14e
Код
Авторство
О чём код?
namespace WindowsFormsMatrixes { partial class HistogramForm { /// <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(); } base.Dispose(disposing); } #region Windows Form 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() { System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); this.chart = new System.Windows.Forms.DataVisualization.Charting.Chart(); ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit(); this.SuspendLayout(); // // chart // chartArea1.Name = "ChartArea1"; this.chart.ChartAreas.Add(chartArea1); this.chart.Dock = System.Windows.Forms.DockStyle.Fill; legend1.Name = "Legend1"; this.chart.Legends.Add(legend1); this.chart.Location = new System.Drawing.Point(0, 0); this.chart.Name = "chart"; this.chart.Size = new System.Drawing.Size(933, 659); this.chart.TabIndex = 0; this.chart.Text = "chart1"; // // HistogramForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(933, 659); this.Controls.Add(this.chart); this.Name = "HistogramForm"; this.Text = "HistogramForm"; ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.DataVisualization.Charting.Chart chart; } }