Skip to content

Instantly share code, notes, and snippets.

@acid-chicken
Created April 8, 2017 04:09
Show Gist options
  • Save acid-chicken/2f7b48636a6c3b94d5393ef740a2f6ba to your computer and use it in GitHub Desktop.
Save acid-chicken/2f7b48636a6c3b94d5393ef740a2f6ba to your computer and use it in GitHub Desktop.
namespace ImageLoad
{
partial class MainForm
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージ リソースを破棄する場合は true を指定し、その他の場合は false を指定します。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows フォーム デザイナーで生成されたコード
/// <summary>
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
/// コード エディターで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.listView = new System.Windows.Forms.ListView();
this.SuspendLayout();
//
// listView
//
this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView.Location = new System.Drawing.Point(0, 0);
this.listView.Name = "listView";
this.listView.OwnerDraw = true;
this.listView.Size = new System.Drawing.Size(284, 261);
this.listView.TabIndex = 0;
this.listView.TileSize = new System.Drawing.Size(20, 18);
this.listView.UseCompatibleStateImageBehavior = false;
this.listView.View = System.Windows.Forms.View.Tile;
this.listView.DrawItem += new System.Windows.Forms.DrawListViewItemEventHandler(this.listView_DrawItem);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 261);
this.Controls.Add(this.listView);
this.Name = "MainForm";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listView;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment