Statusnachrichten werden im Mainform dargestellt

This commit is contained in:
HuskyTeufel
2021-04-16 11:43:16 +02:00
parent 23e19900bb
commit 39a0a503b7
4 changed files with 45 additions and 2 deletions

View File

@@ -50,6 +50,7 @@
this.toolStripStatus_projekt_Label = new System.Windows.Forms.ToolStripStatusLabel();
this.toolstrip_gesamtLiner = new System.Windows.Forms.ToolStripStatusLabel();
this.update = new UpdateLib.Updater();
this.toolstrip_messages = new System.Windows.Forms.ToolStripStatusLabel();
this.mainmenu.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
@@ -180,7 +181,8 @@
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatus_projekt_Label,
this.toolstrip_gesamtLiner});
this.toolstrip_gesamtLiner,
this.toolstrip_messages});
this.statusStrip1.Location = new System.Drawing.Point(0, 431);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(813, 22);
@@ -203,6 +205,13 @@
//
this.update.UpdateUrl = "http://home.cosysda.de/sanverwaltung/UpdateInfo.dat";
//
// toolstrip_messages
//
this.toolstrip_messages.Name = "toolstrip_messages";
this.toolstrip_messages.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.toolstrip_messages.Size = new System.Drawing.Size(16, 17);
this.toolstrip_messages.Text = "...";
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -212,7 +221,7 @@
this.Controls.Add(this.mainmenu);
this.IsMdiContainer = true;
this.MainMenuStrip = this.mainmenu;
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "frmMain";
this.Text = "Kanalsanierungsverwaltung";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frm_main_FormClosing);
@@ -247,6 +256,7 @@
private System.Windows.Forms.ToolStripStatusLabel toolstrip_gesamtLiner;
private System.Windows.Forms.ToolStripMenuItem prefixSuffixToolStripMenuItem;
private UpdateLib.Updater update;
private System.Windows.Forms.ToolStripStatusLabel toolstrip_messages;
}
}