Click here to Skip to main content
15,887,485 members
Articles / Operating Systems / Windows

Applications Traffic Watcher Lite

Rate me:
Please Sign up or sign in to vote.
4.41/5 (6 votes)
14 Jul 20062 min read 53.9K   3.3K   47  
Applications Traffic Watcher is a small utility to get costs of the internet traffic consumed by different applications
namespace AppTraffMonLite
{
    partial class DetailsWindow
    {
        /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DetailsWindow));
            this.listView3 = new System.Windows.Forms.ListView();
            this.colProcessProc = new System.Windows.Forms.ColumnHeader();
            this.colDownloadedProc = new System.Windows.Forms.ColumnHeader();
            this.colDownloadingSpeed = new System.Windows.Forms.ColumnHeader();
            this.colDownloadedCost = new System.Windows.Forms.ColumnHeader();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.resetAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.clearValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // listView3
            // 
            this.listView3.CheckBoxes = true;
            this.listView3.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colProcessProc,
            this.colDownloadedProc,
            this.colDownloadingSpeed,
            this.colDownloadedCost});
            this.listView3.ContextMenuStrip = this.contextMenuStrip1;
            this.listView3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView3.FullRowSelect = true;
            this.listView3.GridLines = true;
            this.listView3.Location = new System.Drawing.Point(0, 0);
            this.listView3.Name = "listView3";
            this.listView3.Size = new System.Drawing.Size(358, 273);
            this.listView3.TabIndex = 6;
            this.listView3.UseCompatibleStateImageBehavior = false;
            this.listView3.View = System.Windows.Forms.View.Details;
            // 
            // colProcessProc
            // 
            this.colProcessProc.Text = "Process";
            this.colProcessProc.Width = 100;
            // 
            // colDownloadedProc
            // 
            this.colDownloadedProc.Text = "Traffic";
            // 
            // colDownloadingSpeed
            // 
            this.colDownloadingSpeed.Text = "Speed";
            this.colDownloadingSpeed.Width = 91;
            // 
            // colDownloadedCost
            // 
            this.colDownloadedCost.Text = "Cost";
            this.colDownloadedCost.Width = 76;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.selectAllToolStripMenuItem,
            this.resetAllToolStripMenuItem,
            this.clearValuesToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(134, 70);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
            this.selectAllToolStripMenuItem.Text = "Select all";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
            // 
            // resetAllToolStripMenuItem
            // 
            this.resetAllToolStripMenuItem.Name = "resetAllToolStripMenuItem";
            this.resetAllToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
            this.resetAllToolStripMenuItem.Text = "Reset all";
            this.resetAllToolStripMenuItem.Click += new System.EventHandler(this.resetAllToolStripMenuItem_Click);
            // 
            // clearValuesToolStripMenuItem
            // 
            this.clearValuesToolStripMenuItem.Name = "clearValuesToolStripMenuItem";
            this.clearValuesToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
            this.clearValuesToolStripMenuItem.Text = "Clear values";
            this.clearValuesToolStripMenuItem.Click += new System.EventHandler(this.clearValuesToolStripMenuItem_Click);
            // 
            // DetailsWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(358, 273);
            this.Controls.Add(this.listView3);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "DetailsWindow";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "DetailsWindow";
            this.Resize += new System.EventHandler(this.DetailsWindow_Resize);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DetailsWindow_FormClosing);
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.ListView listView3;
        public System.Windows.Forms.ColumnHeader colProcessProc;
        public System.Windows.Forms.ColumnHeader colDownloadedProc;
        public System.Windows.Forms.ColumnHeader colDownloadingSpeed;
        public System.Windows.Forms.ColumnHeader colDownloadedCost;
        private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
        private System.Windows.Forms.ToolStripMenuItem selectAllToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem resetAllToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem clearValuesToolStripMenuItem;
    }
}

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
Web Developer
Russian Federation Russian Federation
I am a CIO in Nizhny Novgorod, Russia.

Comments and Discussions