#region README //_____________________________________________________________________________ // //Sample C# code, .NET Framework 1.1, contributed to the Info-Zip project by //Adrian Maull, April 2005. // //If you have questions or comments, contact me at adrian.maull@sprintpcs.com. Though //I will try to respond to coments/questions, I do not guarantee such response. // //THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A //PARTICULAR PURPOSE. // //_____________________________________________________________________________ #endregion using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace CSharpInfoZip_UnZipSample { /// /// Summary description for frmShowContents. /// public class frmShowContents : System.Windows.Forms.Form { private System.Windows.Forms.DataGrid dataGrid1; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtComment; private ZipFileEntries m_ZipFileEntries; private string m_Comment; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public ZipFileEntries UnzippedFileCollection { set { m_ZipFileEntries = value; dataGrid1.DataSource = m_ZipFileEntries; label1.Text = m_ZipFileEntries.Count + " files in this zip."; } } public string Comment { set { m_Comment = value; txtComment.Text = m_Comment; } } public frmShowContents() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.dataGrid1 = new System.Windows.Forms.DataGrid(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.txtComment = new System.Windows.Forms.TextBox(); ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit(); this.SuspendLayout(); // // dataGrid1 // this.dataGrid1.DataMember = ""; this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dataGrid1.Location = new System.Drawing.Point(8, 16); this.dataGrid1.Name = "dataGrid1"; this.dataGrid1.Size = new System.Drawing.Size(592, 192); this.dataGrid1.TabIndex = 0; // // label1 // this.label1.Location = new System.Drawing.Point(8, 216); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(320, 16); this.label1.TabIndex = 1; this.label1.Text = "label1"; // // label2 // this.label2.Location = new System.Drawing.Point(8, 256); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(160, 16); this.label2.TabIndex = 2; this.label2.Text = "Zip file comment:"; // // txtComment // this.txtComment.Location = new System.Drawing.Point(8, 272); this.txtComment.Multiline = true; this.txtComment.Name = "txtComment"; this.txtComment.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtComment.Size = new System.Drawing.Size(592, 72); this.txtComment.TabIndex = 3; this.txtComment.Text = ""; // // frmShowContents // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(616, 400); this.Controls.Add(this.txtComment); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.dataGrid1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmShowContents"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "frmShowContents"; this.Load += new System.EventHandler(this.frmShowContents_Load); ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit(); this.ResumeLayout(false); } #endregion private void frmShowContents_Load(object sender, System.EventArgs e) { } } }