コード例 #1
0
ファイル: softerCell.cs プロジェクト: sangb1n/wiresharkplugin
        private void softerCell_Load(object sender, EventArgs e)
        {
            streamMessagePool.appPath = Application.StartupPath.ToString();

            f0.MdiParent = this;
            f0.Show();
            //f1.MdiParent = this;
            //f1.Show();
            //f2.MdiParent = this;
            //f2.Show();

            middleDelegate.sendPEvent += new middleDelegate.SendPMessage(this.fileConvertListProgress);

            toolStripStatusLabel1.Text      = string.Empty;
            toolStripStatusLabel2.Text      = string.Empty;
            toolStripStatusLabel3.Text      = string.Empty;
            toolStripStatusLabel5.Text      = string.Empty;
            statusStrip1.LayoutStyle        = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            toolStripStatusLabel4.Text      = "http://www.softercell.com";
            toolStripStatusLabel4.IsLink    = true;
            toolStripStatusLabel4.Alignment = ToolStripItemAlignment.Right;

            toolStripProgressBar1.Maximum = fileConvertList.line_total_number;
            toolStripProgressBar1.Minimum = 0;
            toolStripProgressBar1.Value   = 0;
        }
コード例 #2
0
ファイル: softerCell.cs プロジェクト: sangb1n/wiresharkplugin
        private void allMessageFlowToolStripMenuItem_Click(object sender, EventArgs e)
        {
            allMessageFlow fr0 = new allMessageFlow();

            fr0.MdiParent = this;
            fr0.Show();
        }
コード例 #3
0
 private void allMessageFlowToolStripMenuItem_Click(object sender, EventArgs e)
 {
     allMessageFlow fr0 = new allMessageFlow();
     fr0.MdiParent = this;
     fr0.Show();
 }