ShareX/ShareX.HistoryLib/Forms/ImageHistoryForm.Designer.cs

159 lines
7.6 KiB
C#
Raw Normal View History

2014-12-11 09:25:20 +13:00
namespace ShareX.HistoryLib
2013-11-03 23:53:49 +13:00
{
partial class ImageHistoryForm
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImageHistoryForm));
2013-11-03 23:53:49 +13:00
this.tscMain = new System.Windows.Forms.ToolStripContainer();
2016-03-02 13:02:08 +13:00
this.ilvImages = new Manina.Windows.Forms.ImageListView();
2013-11-03 23:53:49 +13:00
this.tsMain = new System.Windows.Forms.ToolStrip();
2018-07-24 04:01:20 +12:00
this.tslSearch = new System.Windows.Forms.ToolStripLabel();
this.tstbSearch = new System.Windows.Forms.ToolStripTextBox();
this.tsbSearch = new System.Windows.Forms.ToolStripButton();
2018-08-01 23:44:48 +12:00
this.tss1 = new System.Windows.Forms.ToolStripSeparator();
2018-08-02 01:12:18 +12:00
this.tsbSettings = new System.Windows.Forms.ToolStripButton();
2013-11-03 23:53:49 +13:00
this.tscMain.ContentPanel.SuspendLayout();
this.tscMain.TopToolStripPanel.SuspendLayout();
this.tscMain.SuspendLayout();
this.tsMain.SuspendLayout();
this.SuspendLayout();
//
2016-03-02 13:02:08 +13:00
// tscMain
//
//
// tscMain.ContentPanel
//
this.tscMain.ContentPanel.Controls.Add(this.ilvImages);
resources.ApplyResources(this.tscMain.ContentPanel, "tscMain.ContentPanel");
resources.ApplyResources(this.tscMain, "tscMain");
this.tscMain.Name = "tscMain";
//
// tscMain.TopToolStripPanel
//
this.tscMain.TopToolStripPanel.Controls.Add(this.tsMain);
//
2013-11-03 23:53:49 +13:00
// ilvImages
//
this.ilvImages.AllowDrag = true;
2013-11-03 23:53:49 +13:00
this.ilvImages.AllowDuplicateFileNames = true;
this.ilvImages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.ilvImages.CacheLimit = "100MB";
this.ilvImages.ColumnHeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
2018-08-01 23:44:48 +12:00
this.ilvImages.Columns.AddRange(new Manina.Windows.Forms.ImageListView.ImageListViewColumnHeader[] {
new Manina.Windows.Forms.ImageListView.ImageListViewColumnHeader(Manina.Windows.Forms.ColumnType.Name, "", 100, 0, true),
new Manina.Windows.Forms.ImageListView.ImageListViewColumnHeader(Manina.Windows.Forms.ColumnType.FileSize, "", 100, 1, true),
new Manina.Windows.Forms.ImageListView.ImageListViewColumnHeader(Manina.Windows.Forms.ColumnType.Dimensions, "", 100, 2, true),
new Manina.Windows.Forms.ImageListView.ImageListViewColumnHeader(Manina.Windows.Forms.ColumnType.FilePath, "", 100, 3, true)});
resources.ApplyResources(this.ilvImages, "ilvImages");
2013-11-03 23:53:49 +13:00
this.ilvImages.GroupHeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
this.ilvImages.Name = "ilvImages";
this.ilvImages.PersistentCacheDirectory = "";
this.ilvImages.PersistentCacheSize = ((long)(100));
this.ilvImages.ThumbnailSize = new System.Drawing.Size(100, 100);
this.ilvImages.ItemDoubleClick += new Manina.Windows.Forms.ItemDoubleClickEventHandler(this.ilvImages_ItemDoubleClick);
this.ilvImages.SelectionChanged += new System.EventHandler(this.ilvImages_SelectionChanged);
this.ilvImages.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ilvImages_KeyDown);
//
// tsMain
//
resources.ApplyResources(this.tsMain, "tsMain");
2013-11-03 23:53:49 +13:00
this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2018-07-24 04:01:20 +12:00
this.tslSearch,
this.tstbSearch,
this.tsbSearch,
2018-08-01 23:44:48 +12:00
this.tss1,
this.tsbSettings});
2013-11-03 23:53:49 +13:00
this.tsMain.Name = "tsMain";
this.tsMain.ShowItemToolTips = false;
2013-11-03 23:53:49 +13:00
//
2018-07-24 04:01:20 +12:00
// tslSearch
//
this.tslSearch.Name = "tslSearch";
resources.ApplyResources(this.tslSearch, "tslSearch");
//
// tstbSearch
//
this.tstbSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tstbSearch.Name = "tstbSearch";
resources.ApplyResources(this.tstbSearch, "tstbSearch");
2018-07-24 05:04:18 +12:00
this.tstbSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tstbSearch_KeyDown);
2018-07-24 04:01:20 +12:00
//
// tsbSearch
//
this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSearch.Image = global::ShareX.HistoryLib.Properties.Resources.magnifier;
resources.ApplyResources(this.tsbSearch, "tsbSearch");
this.tsbSearch.Name = "tsbSearch";
this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
//
2018-08-02 01:12:18 +12:00
// tss1
//
this.tss1.Name = "tss1";
resources.ApplyResources(this.tss1, "tss1");
//
2018-08-01 23:44:48 +12:00
// tsbSettings
2013-11-03 23:53:49 +13:00
//
2018-08-01 23:44:48 +12:00
this.tsbSettings.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
resources.ApplyResources(this.tsbSettings, "tsbSettings");
this.tsbSettings.Name = "tsbSettings";
this.tsbSettings.Click += new System.EventHandler(this.tsbSettings_Click);
2013-11-03 23:53:49 +13:00
//
// ImageHistoryForm
//
resources.ApplyResources(this, "$this");
2013-11-03 23:53:49 +13:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
2013-11-03 23:53:49 +13:00
this.Controls.Add(this.tscMain);
this.KeyPreview = true;
this.Name = "ImageHistoryForm";
this.Shown += new System.EventHandler(this.ImageHistoryForm_Shown);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ImageHistoryForm_KeyDown);
this.tscMain.ContentPanel.ResumeLayout(false);
this.tscMain.TopToolStripPanel.ResumeLayout(false);
this.tscMain.TopToolStripPanel.PerformLayout();
this.tscMain.ResumeLayout(false);
this.tscMain.PerformLayout();
this.tsMain.ResumeLayout(false);
this.tsMain.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private Manina.Windows.Forms.ImageListView ilvImages;
private System.Windows.Forms.ToolStripContainer tscMain;
private System.Windows.Forms.ToolStrip tsMain;
2018-07-24 04:01:20 +12:00
private System.Windows.Forms.ToolStripLabel tslSearch;
private System.Windows.Forms.ToolStripTextBox tstbSearch;
private System.Windows.Forms.ToolStripButton tsbSearch;
2018-08-01 23:44:48 +12:00
private System.Windows.Forms.ToolStripSeparator tss1;
private System.Windows.Forms.ToolStripButton tsbSettings;
2013-11-03 23:53:49 +13:00
}
}