Trade out Poke icon with a nicer one (with a larger image size than 16x16)

This commit is contained in:
andres.delikat 2011-09-11 01:39:26 +00:00
parent 1eac1dbb05
commit 5ed4a36fd6
6 changed files with 12597 additions and 301 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 361 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 B

After

Width:  |  Height:  |  Size: 811 B

View File

@ -325,9 +325,9 @@
this.AddressesLabel.Size = new System.Drawing.Size(28, 14); this.AddressesLabel.Size = new System.Drawing.Size(28, 14);
this.AddressesLabel.TabIndex = 0; this.AddressesLabel.TabIndex = 0;
this.AddressesLabel.Text = "RAM"; this.AddressesLabel.Text = "RAM";
this.AddressesLabel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.AddressesLabel_MouseClick);
this.AddressesLabel.MouseLeave += new System.EventHandler(this.AddressesLabel_MouseLeave); this.AddressesLabel.MouseLeave += new System.EventHandler(this.AddressesLabel_MouseLeave);
this.AddressesLabel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AddressesLabel_MouseMove); this.AddressesLabel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AddressesLabel_MouseMove);
this.AddressesLabel.MouseClick += new System.Windows.Forms.MouseEventHandler(this.AddressesLabel_MouseClick);
// //
// HexEditor // HexEditor
// //
@ -342,11 +342,11 @@
this.Name = "HexEditor"; this.Name = "HexEditor";
this.Text = "HexEditor"; this.Text = "HexEditor";
this.Load += new System.EventHandler(this.HexEditor_Load); this.Load += new System.EventHandler(this.HexEditor_Load);
this.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.HexEditor_MouseWheel);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HexEditor_KeyUp);
this.Resize += new System.EventHandler(this.HexEditor_Resize);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HexEditor_KeyDown);
this.ResizeEnd += new System.EventHandler(this.HexEditor_ResizeEnd); this.ResizeEnd += new System.EventHandler(this.HexEditor_ResizeEnd);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.HexEditor_KeyDown);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.HexEditor_KeyUp);
this.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.HexEditor_MouseWheel);
this.Resize += new System.EventHandler(this.HexEditor_Resize);
this.menuStrip1.ResumeLayout(false); this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.menuStrip1.PerformLayout();
this.ViewerContextMenuStrip.ResumeLayout(false); this.ViewerContextMenuStrip.ResumeLayout(false);

File diff suppressed because it is too large Load Diff

View File

@ -70,8 +70,8 @@
this.AddressBox.Size = new System.Drawing.Size(80, 20); this.AddressBox.Size = new System.Drawing.Size(80, 20);
this.AddressBox.TabIndex = 2; this.AddressBox.TabIndex = 2;
this.AddressBox.Text = "0000"; this.AddressBox.Text = "0000";
this.AddressBox.Leave += new System.EventHandler(this.AddressBox_Leave);
this.AddressBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AddressBox_KeyPress); this.AddressBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.AddressBox_KeyPress);
this.AddressBox.Leave += new System.EventHandler(this.AddressBox_Leave);
// //
// DataTypeGroupBox // DataTypeGroupBox
// //
@ -241,8 +241,8 @@
this.ValueBox.Size = new System.Drawing.Size(80, 20); this.ValueBox.Size = new System.Drawing.Size(80, 20);
this.ValueBox.TabIndex = 3; this.ValueBox.TabIndex = 3;
this.ValueBox.Text = "0000"; this.ValueBox.Text = "0000";
this.ValueBox.Leave += new System.EventHandler(this.ValueBox_Leave);
this.ValueBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ValueBox_KeyPress); this.ValueBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ValueBox_KeyPress);
this.ValueBox.Leave += new System.EventHandler(this.ValueBox_Leave);
// //
// RamPoke // RamPoke
// //

File diff suppressed because it is too large Load Diff