This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
linear-app-launcher/Windows/Forms/Tile/TileLayoutContainer.Designer.cs

111 lines
4.8 KiB
C#
Raw Normal View History

2020-04-11 17:43:20 +00:00
namespace AppLauncher.Windows.Forms
{
2020-05-07 22:31:03 +00:00
partial class TileLayoutContainer
2020-04-11 17:43:20 +00:00
{
/// <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 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()
{
2020-05-02 16:17:10 +00:00
this.components = new System.ComponentModel.Container();
2020-04-11 17:43:20 +00:00
this.label1 = new AppLauncher.Windows.Forms.TileGroupLabel();
this.panel1 = new AppLauncher.Windows.Forms.TileLayoutPanel();
2020-05-02 16:17:10 +00:00
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2020-05-10 10:03:55 +00:00
this.addListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2020-05-02 16:17:10 +00:00
this.contextMenuStrip1.SuspendLayout();
2020-04-11 17:43:20 +00:00
this.SuspendLayout();
//
// label1
//
this.label1.AutoScrollMargin = new System.Drawing.Size(0, 0);
this.label1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
this.label1.Checked = false;
this.label1.Location = new System.Drawing.Point(0, 0);
this.label1.Margin = new System.Windows.Forms.Padding(0, 0, 0, 3);
this.label1.MinimumSize = new System.Drawing.Size(100, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(223, 20);
this.label1.TabIndex = 11;
this.label1.TileGroupPanel = null;
this.label1.TitleText = "Featured";
//
// panel1
//
2020-05-03 18:36:06 +00:00
this.panel1.AllowDrop = true;
2020-04-11 17:43:20 +00:00
this.panel1.AutoScrollMargin = new System.Drawing.Size(0, 0);
this.panel1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Location = new System.Drawing.Point(0, 23);
this.panel1.Margin = new System.Windows.Forms.Padding(2, 0, 0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(223, 127);
this.panel1.TabIndex = 27;
//
2020-05-02 16:17:10 +00:00
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2020-05-10 10:03:55 +00:00
this.addToolStripMenuItem,
this.addListToolStripMenuItem});
2020-05-02 16:17:10 +00:00
this.contextMenuStrip1.Name = "contextMenuStrip1";
2020-05-10 10:03:55 +00:00
this.contextMenuStrip1.Size = new System.Drawing.Size(181, 70);
2020-05-02 16:17:10 +00:00
//
// addToolStripMenuItem
//
this.addToolStripMenuItem.Name = "addToolStripMenuItem";
this.addToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
2020-05-03 18:36:06 +00:00
this.addToolStripMenuItem.Text = "&Add Tile";
2020-05-10 10:03:55 +00:00
this.addToolStripMenuItem.Click += new System.EventHandler(this.addTileMenuItem_Click);
2020-05-02 16:17:10 +00:00
//
2020-05-10 10:03:55 +00:00
// addListToolStripMenuItem
//
this.addListToolStripMenuItem.Name = "addListToolStripMenuItem";
this.addListToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.addListToolStripMenuItem.Text = "Add &List Tile";
this.addListToolStripMenuItem.Click += new System.EventHandler(this.addListTileMenuItem_Click);
//
// TileLayoutContainer
2020-04-11 17:43:20 +00:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.panel1);
this.Controls.Add(this.label1);
2020-05-10 10:03:55 +00:00
this.Name = "TileLayoutContainer";
2020-04-11 17:43:20 +00:00
this.Size = new System.Drawing.Size(370, 150);
2020-05-02 16:17:10 +00:00
this.contextMenuStrip1.ResumeLayout(false);
2020-04-11 17:43:20 +00:00
this.ResumeLayout(false);
}
#endregion
private TileGroupLabel label1;
private TileLayoutPanel panel1;
2020-05-02 16:17:10 +00:00
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
2020-05-10 10:03:55 +00:00
private System.Windows.Forms.ToolStripMenuItem addListToolStripMenuItem;
2020-04-11 17:43:20 +00:00
}
}