netmonitor/NetMonitorClient/Form1.Designer.cs

254 lines
13 KiB
C#

namespace NetMonitorClient
{
partial class Netzmonitor
{
/// <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 Windows Form-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();
this.ProgramMenu = new System.Windows.Forms.MenuStrip();
this.ProgramMenuDatei = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiNetzwerke = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiNetzwerkeAnsehen = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiNetzwerkeBearbeiten = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiEmail = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiEmailAnsehen = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiEmailHinzufuegen = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDateiBeenden = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDienst = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDienstStarten = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenuDienstStoppen = new System.Windows.Forms.ToolStripMenuItem();
this.Statusbar = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.trayMenuNetzwerk = new System.Windows.Forms.ToolStripMenuItem();
this.StatusbarLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.StatusbarDienst = new System.Windows.Forms.ToolStripStatusLabel();
this.StatusbarProgress = new System.Windows.Forms.ToolStripProgressBar();
this.ProgramMenuNetzwerke = new System.Windows.Forms.ToolStripMenuItem();
this.ProgramMenu.SuspendLayout();
this.Statusbar.SuspendLayout();
this.SuspendLayout();
//
// ProgramMenu
//
this.ProgramMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ProgramMenuDatei,
this.ProgramMenuDienst,
this.ProgramMenuNetzwerke});
this.ProgramMenu.Location = new System.Drawing.Point(0, 0);
this.ProgramMenu.Name = "ProgramMenu";
this.ProgramMenu.Size = new System.Drawing.Size(284, 24);
this.ProgramMenu.TabIndex = 0;
this.ProgramMenu.Text = "menuStrip1";
//
// ProgramMenuDatei
//
this.ProgramMenuDatei.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ProgramMenuDateiNetzwerke,
this.ProgramMenuDateiEmail,
this.ProgramMenuDateiBeenden});
this.ProgramMenuDatei.Name = "ProgramMenuDatei";
this.ProgramMenuDatei.Size = new System.Drawing.Size(46, 20);
this.ProgramMenuDatei.Text = "Datei";
//
// ProgramMenuDateiNetzwerke
//
this.ProgramMenuDateiNetzwerke.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ProgramMenuDateiNetzwerkeAnsehen,
this.ProgramMenuDateiNetzwerkeBearbeiten});
this.ProgramMenuDateiNetzwerke.Name = "ProgramMenuDateiNetzwerke";
this.ProgramMenuDateiNetzwerke.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiNetzwerke.Text = "Netzwerke";
//
// ProgramMenuDateiNetzwerkeAnsehen
//
this.ProgramMenuDateiNetzwerkeAnsehen.Name = "ProgramMenuDateiNetzwerkeAnsehen";
this.ProgramMenuDateiNetzwerkeAnsehen.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiNetzwerkeAnsehen.Text = "Ansehen";
this.ProgramMenuDateiNetzwerkeAnsehen.Click += new System.EventHandler(this.ProgramMenuDateiNetzwerkeAnsehen_Click);
//
// ProgramMenuDateiNetzwerkeBearbeiten
//
this.ProgramMenuDateiNetzwerkeBearbeiten.Name = "ProgramMenuDateiNetzwerkeBearbeiten";
this.ProgramMenuDateiNetzwerkeBearbeiten.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiNetzwerkeBearbeiten.Text = "Bearbeiten";
//
// ProgramMenuDateiEmail
//
this.ProgramMenuDateiEmail.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ProgramMenuDateiEmailAnsehen,
this.ProgramMenuDateiEmailHinzufuegen});
this.ProgramMenuDateiEmail.Name = "ProgramMenuDateiEmail";
this.ProgramMenuDateiEmail.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiEmail.Text = "E-Mail";
//
// ProgramMenuDateiEmailAnsehen
//
this.ProgramMenuDateiEmailAnsehen.Name = "ProgramMenuDateiEmailAnsehen";
this.ProgramMenuDateiEmailAnsehen.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiEmailAnsehen.Text = "Ansehen";
//
// ProgramMenuDateiEmailHinzufuegen
//
this.ProgramMenuDateiEmailHinzufuegen.Name = "ProgramMenuDateiEmailHinzufuegen";
this.ProgramMenuDateiEmailHinzufuegen.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiEmailHinzufuegen.Text = "Hinzufügen";
//
// ProgramMenuDateiBeenden
//
this.ProgramMenuDateiBeenden.Name = "ProgramMenuDateiBeenden";
this.ProgramMenuDateiBeenden.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDateiBeenden.Text = "Beenden";
//
// ProgramMenuDienst
//
this.ProgramMenuDienst.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ProgramMenuDienstStarten,
this.ProgramMenuDienstStoppen});
this.ProgramMenuDienst.Name = "ProgramMenuDienst";
this.ProgramMenuDienst.Size = new System.Drawing.Size(52, 20);
this.ProgramMenuDienst.Text = "Dienst";
//
// ProgramMenuDienstStarten
//
this.ProgramMenuDienstStarten.Name = "ProgramMenuDienstStarten";
this.ProgramMenuDienstStarten.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDienstStarten.Text = "Starten";
//
// ProgramMenuDienstStoppen
//
this.ProgramMenuDienstStoppen.Name = "ProgramMenuDienstStoppen";
this.ProgramMenuDienstStoppen.Size = new System.Drawing.Size(152, 22);
this.ProgramMenuDienstStoppen.Text = "Stoppen";
//
// Statusbar
//
this.Statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.StatusbarLabel,
this.StatusbarProgress,
this.StatusbarDienst});
this.Statusbar.Location = new System.Drawing.Point(0, 240);
this.Statusbar.Name = "Statusbar";
this.Statusbar.Size = new System.Drawing.Size(284, 22);
this.Statusbar.TabIndex = 1;
this.Statusbar.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17);
this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
//
// trayIcon
//
this.trayIcon.ContextMenuStrip = this.trayMenu;
this.trayIcon.Text = "Netzwerk Einstellungstool";
this.trayIcon.Visible = true;
this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
//
// trayMenu
//
this.trayMenu.Name = "trayMenu";
this.trayMenu.Size = new System.Drawing.Size(61, 4);
//
// trayMenuNetzwerk
//
this.trayMenuNetzwerk.Name = "trayMenuNetzwerk";
this.trayMenuNetzwerk.Size = new System.Drawing.Size(32, 19);
//
// StatusbarLabel
//
this.StatusbarLabel.Name = "StatusbarLabel";
this.StatusbarLabel.Size = new System.Drawing.Size(50, 17);
this.StatusbarLabel.Text = "Alles Ok";
//
// StatusbarDienst
//
this.StatusbarDienst.Name = "StatusbarDienst";
this.StatusbarDienst.Size = new System.Drawing.Size(70, 17);
this.StatusbarDienst.Text = "Dienst Läuft";
//
// StatusbarProgress
//
this.StatusbarProgress.Name = "StatusbarProgress";
this.StatusbarProgress.Size = new System.Drawing.Size(50, 16);
//
// ProgramMenuNetzwerke
//
this.ProgramMenuNetzwerke.Name = "ProgramMenuNetzwerke";
this.ProgramMenuNetzwerke.Size = new System.Drawing.Size(74, 20);
this.ProgramMenuNetzwerke.Text = "Netzwerke";
//
// Netzmonitor
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.Statusbar);
this.Controls.Add(this.ProgramMenu);
this.MainMenuStrip = this.ProgramMenu;
this.Name = "Netzmonitor";
this.Text = "Netzmonitor";
this.Resize += new System.EventHandler(this.Netzmonitor_Resize);
this.ProgramMenu.ResumeLayout(false);
this.ProgramMenu.PerformLayout();
this.Statusbar.ResumeLayout(false);
this.Statusbar.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip ProgramMenu;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDatei;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiNetzwerke;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiEmail;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiBeenden;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDienst;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiNetzwerkeAnsehen;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiNetzwerkeBearbeiten;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiEmailAnsehen;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDateiEmailHinzufuegen;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDienstStarten;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuDienstStoppen;
private System.Windows.Forms.StatusStrip Statusbar;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.NotifyIcon trayIcon;
private System.Windows.Forms.ContextMenuStrip trayMenu;
private System.Windows.Forms.ToolStripMenuItem trayMenuNetzwerk;
private InIReader networkini;
private System.Windows.Forms.ToolStripStatusLabel StatusbarLabel;
private System.Windows.Forms.ToolStripProgressBar StatusbarProgress;
private System.Windows.Forms.ToolStripStatusLabel StatusbarDienst;
private System.Windows.Forms.ToolStripMenuItem ProgramMenuNetzwerke;
}
}