/
artem_ivanov
/
Matrices
Обзор
Документация
Войти
/
artem_ivanov
/
Matrices
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
WindowsFormsMatrixes/MainForm.Designer.cs
96 строк
4 KB
Artyom Ivanov
добавь эффективные методы и сделай рефакторинг кода
25 мар 2023, 23:20
25 мар 2023, 23:20
938e1eb
Код
Авторство
О чём код?
namespace WindowsFormsMatrixes { partial class MainForm { /// <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() { this.MenuStrip = new System.Windows.Forms.MenuStrip(); this.MatrixCalculatorTab = new System.Windows.Forms.ToolStripMenuItem(); this.SoLETab = new System.Windows.Forms.ToolStripMenuItem(); this.ControlPanel = new System.Windows.Forms.Panel(); this.MenuStrip.SuspendLayout(); this.SuspendLayout(); // // MenuStrip // this.MenuStrip.ImageScalingSize = new System.Drawing.Size(20, 20); this.MenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MatrixCalculatorTab, this.SoLETab}); this.MenuStrip.Location = new System.Drawing.Point(0, 0); this.MenuStrip.Name = "MenuStrip"; this.MenuStrip.Size = new System.Drawing.Size(1182, 39); this.MenuStrip.TabIndex = 0; this.MenuStrip.Text = "menuStrip1"; this.MenuStrip.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.MenuStrip_ItemClicked); // // MatrixCalculatorTab // this.MatrixCalculatorTab.Font = new System.Drawing.Font("Segoe UI", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.MatrixCalculatorTab.Name = "MatrixCalculatorTab"; this.MatrixCalculatorTab.Size = new System.Drawing.Size(287, 35); this.MatrixCalculatorTab.Text = "Матричный калькулятор"; this.MatrixCalculatorTab.Click += new System.EventHandler(this.MatrixCalculatorTab_Click); // // SoLETab // this.SoLETab.Font = new System.Drawing.Font("Segoe UI", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.SoLETab.Name = "SoLETab"; this.SoLETab.Size = new System.Drawing.Size(85, 35); this.SoLETab.Text = "СЛАУ"; this.SoLETab.Click += new System.EventHandler(this.SoLETab_Click); // // ControlPanel // this.ControlPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.ControlPanel.Location = new System.Drawing.Point(0, 39); this.ControlPanel.Name = "ControlPanel"; this.ControlPanel.Size = new System.Drawing.Size(1182, 564); this.ControlPanel.TabIndex = 1; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1182, 603); this.Controls.Add(this.ControlPanel); this.Controls.Add(this.MenuStrip); this.MainMenuStrip = this.MenuStrip; this.Name = "MainForm"; this.Text = "Главная Форма"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.MainForm_Load); this.MenuStrip.ResumeLayout(false); this.MenuStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.MenuStrip MenuStrip; private System.Windows.Forms.Panel ControlPanel; private System.Windows.Forms.ToolStripMenuItem MatrixCalculatorTab; private System.Windows.Forms.ToolStripMenuItem SoLETab; } }