66 lines
2.6 KiB
C#
Raw Permalink Normal View History

2023-10-13 17:33:04 +03:00
using System.Drawing;
namespace VisableComponents
{
partial class MyCheckList
{
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Код, автоматически созданный конструктором компонентов
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
private void InitializeComponent()
{
this.checkedList = new System.Windows.Forms.CheckedListBox();
this.SuspendLayout();
//
// checkedList
//
this.checkedList.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(200)))), ((int)(((byte)(246)))));
this.checkedList.FormattingEnabled = true;
this.checkedList.HorizontalScrollbar = true;
this.checkedList.Location = new System.Drawing.Point(3, 3);
this.checkedList.Name = "checkedList";
this.checkedList.Size = new System.Drawing.Size(279, 242);
this.checkedList.TabIndex = 0;
this.checkedList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedList_ItemCheck);
//
// MyCheckList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.BackColor = Color.FromArgb(0,0,0);
this.Controls.Add(this.checkedList);
this.Name = "MyCheckList";
this.Size = new System.Drawing.Size(285, 248);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.CheckedListBox checkedList;
}
}