Index: src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.Designer.cs =================================================================== diff -u -rb9021b434859818eefbd75e1589c360e86e89dc4 -rfe8694e3904095497b226349c0d2b338a95ff3b7 --- src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.Designer.cs (.../MessageWindow.Designer.cs) (revision b9021b434859818eefbd75e1589c360e86e89dc4) +++ src/DeltaShell/DeltaShell.Gui/Forms/MessageWindow/MessageWindow.Designer.cs (.../MessageWindow.Designer.cs) (revision fe8694e3904095497b226349c0d2b338a95ff3b7) @@ -42,21 +42,21 @@ this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.buttonCopy = new System.Windows.Forms.ToolStripMenuItem(); this.cToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator(); - this.showDetailsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.buttonClearAll = new System.Windows.Forms.ToolStripMenuItem(); this.levelImages = new System.Windows.Forms.ImageList(this.components); this.toolStrip2 = new System.Windows.Forms.ToolStrip(); this.buttonShowInfo = new System.Windows.Forms.ToolStripButton(); this.buttonShowWarning = new System.Windows.Forms.ToolStripButton(); this.buttonShowError = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); this.messagesDataGridView = new System.Windows.Forms.DataGridView(); - this.messagesBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.messageWindowData = new DeltaShell.Gui.Forms.MessageWindow.MessageWindowData(); this.imageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewImageColumn(); this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.timeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.messagesBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.messageWindowData = new DeltaShell.Gui.Forms.MessageWindow.MessageWindowData(); this.contextMenu.SuspendLayout(); this.toolStrip2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.messagesDataGridView)).BeginInit(); @@ -69,13 +69,13 @@ this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.buttonCopy, this.cToolStripMenuItem, - this.showDetailsToolStripMenuItem, this.buttonClearAll}); this.contextMenu.Name = "contextMenu"; resources.ApplyResources(this.contextMenu, "contextMenu"); // // buttonCopy // + this.buttonCopy.Image = global::DeltaShell.Gui.Properties.Resources.CopyHS; this.buttonCopy.Name = "buttonCopy"; resources.ApplyResources(this.buttonCopy, "buttonCopy"); this.buttonCopy.Click += new System.EventHandler(this.ButtonCopyClick); @@ -85,15 +85,9 @@ this.cToolStripMenuItem.Name = "cToolStripMenuItem"; resources.ApplyResources(this.cToolStripMenuItem, "cToolStripMenuItem"); // - // showDetailsToolStripMenuItem - // - this.showDetailsToolStripMenuItem.Image = global::DeltaShell.Gui.Properties.Resources.application_import_blue; - this.showDetailsToolStripMenuItem.Name = "showDetailsToolStripMenuItem"; - resources.ApplyResources(this.showDetailsToolStripMenuItem, "showDetailsToolStripMenuItem"); - this.showDetailsToolStripMenuItem.Click += new System.EventHandler(this.showDetailsToolStripMenuItem_Click); - // // buttonClearAll // + this.buttonClearAll.Image = global::DeltaShell.Gui.Properties.Resources.icon_clear_all_messages; this.buttonClearAll.Name = "buttonClearAll"; resources.ApplyResources(this.buttonClearAll, "buttonClearAll"); this.buttonClearAll.Click += new System.EventHandler(this.ButtonClearAllClick); @@ -116,7 +110,8 @@ this.buttonShowInfo, this.buttonShowWarning, this.buttonShowError, - this.toolStripSeparator1}); + this.toolStripSeparator1, + this.toolStripButton1}); this.toolStrip2.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow; this.toolStrip2.Name = "toolStrip2"; // @@ -155,6 +150,14 @@ this.toolStripSeparator1.Name = "toolStripSeparator1"; resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // + // toolStripButton1 + // + this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.toolStripButton1.Image = global::DeltaShell.Gui.Properties.Resources.application_import_blue; + resources.ApplyResources(this.toolStripButton1, "toolStripButton1"); + this.toolStripButton1.Name = "toolStripButton1"; + this.toolStripButton1.Click += new System.EventHandler(this.showDetailsToolStripMenuItem_Click); + // // messagesDataGridView // this.messagesDataGridView.AllowUserToAddRows = false; @@ -184,17 +187,6 @@ this.messagesDataGridView.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False; this.messagesDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; // - // messagesBindingSource - // - this.messagesBindingSource.DataMember = "Messages"; - this.messagesBindingSource.DataSource = this.messageWindowData; - this.messagesBindingSource.Sort = "Id"; - // - // messageWindowData - // - this.messageWindowData.DataSetName = "MessageWindowData"; - this.messageWindowData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; - // // imageDataGridViewTextBoxColumn // this.imageDataGridViewTextBoxColumn.DataPropertyName = "Image"; @@ -232,6 +224,17 @@ this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn"; this.messageDataGridViewTextBoxColumn.ReadOnly = true; // + // messagesBindingSource + // + this.messagesBindingSource.DataMember = "Messages"; + this.messagesBindingSource.DataSource = this.messageWindowData; + this.messagesBindingSource.Sort = "Id"; + // + // messageWindowData + // + this.messageWindowData.DataSetName = "MessageWindowData"; + this.messageWindowData.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; + // // MessageWindow // resources.ApplyResources(this, "$this"); @@ -267,11 +270,11 @@ private System.Windows.Forms.ToolStripButton buttonShowInfo; private System.Windows.Forms.DataGridView messagesDataGridView; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; - private ToolStripMenuItem showDetailsToolStripMenuItem; private DataGridViewTextBoxColumn sourceDataGridViewTextBoxColumn; private DataGridViewImageColumn imageDataGridViewTextBoxColumn; private DataGridViewTextBoxColumn Id; private DataGridViewTextBoxColumn timeDataGridViewTextBoxColumn; private DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn; + private ToolStripButton toolStripButton1; } } \ No newline at end of file