Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Windows Forms

Windows Vista Sidebar Gadget and Standalone :: FTP-BOX

Rate me:
Please Sign up or sign in to vote.
2.50/5 (3 votes)
30 Mar 20072 min read 48.7K   901   24  
Simple FTP Client
namespace DSn.FtpBox.View
{
  partial class QueueView
  {
    /// <summary> 
    /// Erforderliche Designervariable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary> 
    /// Verwendete Ressourcen bereinigen.
    /// </summary>
    /// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
    protected override void Dispose(bool disposing) {
      if (disposing && (components != null)) {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Vom Komponenten-Designer generierter Code

    /// <summary> 
    /// Erforderliche Methode für die Designerunterstützung. 
    /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
    /// </summary>
    private void InitializeComponent() {
      this.components = new System.ComponentModel.Container();
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QueueView));
      this.queueTable = new XPTable.Models.Table();
      this.queueColumnModel = new XPTable.Models.ColumnModel();
      this.jobTypeColumn = new XPTable.Models.ImageColumn();
      this.fileColumn = new XPTable.Models.TextColumn();
      this.progressColumn = new XPTable.Models.ProgressBarColumn();
      this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.queueTableModel = new XPTable.Models.TableModel();
      ((System.ComponentModel.ISupportInitialize)(this.queueTable)).BeginInit();
      this.contextMenuStrip1.SuspendLayout();
      this.SuspendLayout();
      // 
      // queueTable
      // 
      this.queueTable.AccessibleDescription = null;
      this.queueTable.AccessibleName = null;
      resources.ApplyResources(this.queueTable, "queueTable");
      this.queueTable.BackgroundImage = null;
      this.queueTable.ColumnModel = this.queueColumnModel;
      this.queueTable.ContextMenuStrip = this.contextMenuStrip1;
      this.queueTable.Font = null;
      this.queueTable.FullRowSelect = true;
      this.queueTable.GridLines = XPTable.Models.GridLines.Both;
      this.queueTable.MultiSelect = true;
      this.queueTable.Name = "queueTable";
      this.queueTable.NoItemsText = "s. Resources";
      this.queueTable.TableModel = this.queueTableModel;
      this.queueTable.SelectionChanged += new XPTable.Events.SelectionEventHandler(this.queueTable_SelectionChanged);
      // 
      // queueColumnModel
      // 
      this.queueColumnModel.Columns.AddRange(new XPTable.Models.Column[] {
            this.jobTypeColumn,
            this.fileColumn,
            this.progressColumn});
      this.queueColumnModel.HeaderHeight = 22;
      // 
      // jobTypeColumn
      // 
      this.jobTypeColumn.Text = "s. Resources";
      this.jobTypeColumn.Width = 24;
      // 
      // fileColumn
      // 
      this.fileColumn.Text = "s. Resources";
      this.fileColumn.Width = 500;
      // 
      // progressColumn
      // 
      this.progressColumn.Text = "s. Resources";
      // 
      // contextMenuStrip1
      // 
      this.contextMenuStrip1.AccessibleDescription = null;
      this.contextMenuStrip1.AccessibleName = null;
      resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
      this.contextMenuStrip1.BackgroundImage = null;
      this.contextMenuStrip1.Font = null;
      this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deleteToolStripMenuItem});
      this.contextMenuStrip1.Name = "contextMenuStrip1";
      // 
      // deleteToolStripMenuItem
      // 
      this.deleteToolStripMenuItem.AccessibleDescription = null;
      this.deleteToolStripMenuItem.AccessibleName = null;
      resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
      this.deleteToolStripMenuItem.BackgroundImage = null;
      this.deleteToolStripMenuItem.Image = global::DSn.FtpBox.View.Resource1.Delete;
      this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
      this.deleteToolStripMenuItem.ShortcutKeyDisplayString = null;
      this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
      // 
      // QueueView
      // 
      this.AccessibleDescription = null;
      this.AccessibleName = null;
      resources.ApplyResources(this, "$this");
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.BackgroundImage = null;
      this.Controls.Add(this.queueTable);
      this.Font = null;
      this.Name = "QueueView";
      ((System.ComponentModel.ISupportInitialize)(this.queueTable)).EndInit();
      this.contextMenuStrip1.ResumeLayout(false);
      this.ResumeLayout(false);

    }

    #endregion

    private XPTable.Models.ColumnModel queueColumnModel;
    private XPTable.Models.ImageColumn jobTypeColumn;
    private XPTable.Models.TextColumn fileColumn;
    private XPTable.Models.ProgressBarColumn progressColumn;
    private XPTable.Models.TableModel queueTableModel;
    private XPTable.Models.Table queueTable;
    private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
    private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions