Files
wallpaperchan/Wallpaperchan/Form1.Designer.cs
2021-05-14 23:51:17 +02:00

290 lines
14 KiB
C#

namespace Wallpaperchan
{
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.components = new System.ComponentModel.Container();
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("", 1);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("", 2);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("", 0);
System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("", 3);
System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("", 3);
System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("", 4);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.btnSelectFolder = new System.Windows.Forms.Button();
this.path = new System.Windows.Forms.TextBox();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.btnApplyWallpaper = new System.Windows.Forms.Button();
this.listView1 = new System.Windows.Forms.ListView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.status = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.delay = new System.Windows.Forms.NumericUpDown();
this.delayLabel = new System.Windows.Forms.Label();
this.btnPause = new System.Windows.Forms.Button();
this.btnToggleGrid = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.slideshowGroup = new System.Windows.Forms.GroupBox();
this.wallpaperGroup = new System.Windows.Forms.GroupBox();
((System.ComponentModel.ISupportInitialize)(this.delay)).BeginInit();
this.slideshowGroup.SuspendLayout();
this.wallpaperGroup.SuspendLayout();
this.SuspendLayout();
//
// btnSelectFolder
//
this.btnSelectFolder.Location = new System.Drawing.Point(993, 93);
this.btnSelectFolder.Name = "btnSelectFolder";
this.btnSelectFolder.Size = new System.Drawing.Size(182, 40);
this.btnSelectFolder.TabIndex = 0;
this.btnSelectFolder.Text = "Select Folder";
this.btnSelectFolder.UseVisualStyleBackColor = true;
this.btnSelectFolder.Click += new System.EventHandler(this.button1_Click);
//
// path
//
this.path.Location = new System.Drawing.Point(211, 95);
this.path.Name = "path";
this.path.Size = new System.Drawing.Size(767, 35);
this.path.TabIndex = 1;
//
// btnApplyWallpaper
//
this.btnApplyWallpaper.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnApplyWallpaper.Location = new System.Drawing.Point(79, 105);
this.btnApplyWallpaper.Name = "btnApplyWallpaper";
this.btnApplyWallpaper.Size = new System.Drawing.Size(182, 40);
this.btnApplyWallpaper.TabIndex = 3;
this.btnApplyWallpaper.Text = "Apply selected";
this.btnApplyWallpaper.UseVisualStyleBackColor = true;
this.btnApplyWallpaper.Click += new System.EventHandler(this.button2_Click);
//
// listView1
//
this.listView1.Alignment = System.Windows.Forms.ListViewAlignment.Default;
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listView1.AutoArrange = false;
this.listView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(47)))), ((int)(((byte)(51)))));
this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.listView1.CheckBoxes = true;
this.listView1.ForeColor = System.Drawing.SystemColors.Window;
this.listView1.HideSelection = false;
listViewItem1.StateImageIndex = 0;
listViewItem2.StateImageIndex = 0;
listViewItem3.StateImageIndex = 0;
listViewItem4.StateImageIndex = 0;
listViewItem5.StateImageIndex = 0;
listViewItem6.StateImageIndex = 0;
this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3,
listViewItem4,
listViewItem5,
listViewItem6});
this.listView1.LargeImageList = this.imageList1;
this.listView1.Location = new System.Drawing.Point(39, 242);
this.listView1.Margin = new System.Windows.Forms.Padding(0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(1914, 744);
this.listView1.TabIndex = 4;
this.listView1.TileSize = new System.Drawing.Size(120, 100);
this.listView1.UseCompatibleStateImageBehavior = false;
//
// imageList1
//
this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "AgaKill0103.png");
this.imageList1.Images.SetKeyName(1, "ASV.png");
this.imageList1.Images.SetKeyName(2, "ASV2.png");
this.imageList1.Images.SetKeyName(3, "ASV3.png");
this.imageList1.Images.SetKeyName(4, "atot0310.png");
//
// status
//
this.status.AutoSize = true;
this.status.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.status.Location = new System.Drawing.Point(211, 149);
this.status.Name = "status";
this.status.Size = new System.Drawing.Size(68, 30);
this.status.TabIndex = 5;
this.status.Text = "status";
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// delay
//
this.delay.Location = new System.Drawing.Point(199, 43);
this.delay.Name = "delay";
this.delay.Size = new System.Drawing.Size(87, 35);
this.delay.TabIndex = 6;
this.delay.Value = new decimal(new int[] {
3,
0,
0,
0});
this.delay.ValueChanged += new System.EventHandler(this.delay_ValueChanged);
//
// delayLabel
//
this.delayLabel.AutoSize = true;
this.delayLabel.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.delayLabel.Location = new System.Drawing.Point(49, 45);
this.delayLabel.Name = "delayLabel";
this.delayLabel.Size = new System.Drawing.Size(118, 30);
this.delayLabel.TabIndex = 7;
this.delayLabel.Text = "Delay (min)";
//
// btnPause
//
this.btnPause.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPause.Location = new System.Drawing.Point(76, 107);
this.btnPause.Name = "btnPause";
this.btnPause.Size = new System.Drawing.Size(182, 40);
this.btnPause.TabIndex = 8;
this.btnPause.Text = "Pause";
this.btnPause.UseVisualStyleBackColor = true;
this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
//
// btnToggleGrid
//
this.btnToggleGrid.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnToggleGrid.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.btnToggleGrid.Location = new System.Drawing.Point(39, 193);
this.btnToggleGrid.Name = "btnToggleGrid";
this.btnToggleGrid.Size = new System.Drawing.Size(131, 40);
this.btnToggleGrid.TabIndex = 9;
this.btnToggleGrid.Text = "List/Grid";
this.btnToggleGrid.UseVisualStyleBackColor = true;
this.btnToggleGrid.Click += new System.EventHandler(this.button1_Click_1);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Segoe Script", 15.85714F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.label1.Location = new System.Drawing.Point(30, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(345, 61);
this.label1.TabIndex = 10;
this.label1.Text = "Wallpaper-chan";
//
// label2
//
this.label2.AutoSize = true;
this.label2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.label2.Location = new System.Drawing.Point(39, 98);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(166, 30);
this.label2.TabIndex = 11;
this.label2.Text = "Wallpaper folder";
//
// slideshowGroup
//
this.slideshowGroup.Controls.Add(this.delayLabel);
this.slideshowGroup.Controls.Add(this.delay);
this.slideshowGroup.Controls.Add(this.btnPause);
this.slideshowGroup.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.slideshowGroup.Location = new System.Drawing.Point(1603, 39);
this.slideshowGroup.Name = "slideshowGroup";
this.slideshowGroup.Size = new System.Drawing.Size(350, 175);
this.slideshowGroup.TabIndex = 12;
this.slideshowGroup.TabStop = false;
this.slideshowGroup.Text = "Slideshow";
//
// wallpaperGroup
//
this.wallpaperGroup.Controls.Add(this.btnApplyWallpaper);
this.wallpaperGroup.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.wallpaperGroup.Location = new System.Drawing.Point(1217, 39);
this.wallpaperGroup.Name = "wallpaperGroup";
this.wallpaperGroup.Size = new System.Drawing.Size(350, 175);
this.wallpaperGroup.TabIndex = 13;
this.wallpaperGroup.TabStop = false;
this.wallpaperGroup.Text = "Wallpaper";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 30F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(39)))), ((int)(((byte)(42)))));
this.ClientSize = new System.Drawing.Size(1999, 1029);
this.Controls.Add(this.wallpaperGroup);
this.Controls.Add(this.slideshowGroup);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnToggleGrid);
this.Controls.Add(this.status);
this.Controls.Add(this.listView1);
this.Controls.Add(this.path);
this.Controls.Add(this.btnSelectFolder);
this.Name = "MainForm";
this.Text = "Hello, this is app";
this.Load += new System.EventHandler(this.MainForm_Load);
this.Shown += new System.EventHandler(this.MainForm_Shown);
((System.ComponentModel.ISupportInitialize)(this.delay)).EndInit();
this.slideshowGroup.ResumeLayout(false);
this.slideshowGroup.PerformLayout();
this.wallpaperGroup.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnSelectFolder;
private System.Windows.Forms.TextBox path;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private System.Windows.Forms.Button btnApplyWallpaper;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.Label status;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.NumericUpDown delay;
private System.Windows.Forms.Label delayLabel;
private System.Windows.Forms.Button btnPause;
private System.Windows.Forms.Button btnToggleGrid;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.GroupBox slideshowGroup;
private System.Windows.Forms.GroupBox wallpaperGroup;
}
}