diff --git a/MangaColor/MangaColor/Fmark.Designer.cs b/MangaColor/MangaColor/Fmark.Designer.cs index 74851e6..e201f4d 100644 --- a/MangaColor/MangaColor/Fmark.Designer.cs +++ b/MangaColor/MangaColor/Fmark.Designer.cs @@ -34,6 +34,7 @@ // // cpanel // + this.cpanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.cpanel.Location = new System.Drawing.Point(23, 0); this.cpanel.Name = "cpanel"; this.cpanel.Size = new System.Drawing.Size(20, 10); @@ -48,7 +49,6 @@ this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ClientSize = new System.Drawing.Size(105, 24); this.Controls.Add(this.cpanel); - this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.MaximizeBox = false; this.MinimizeBox = false; diff --git a/MangaColor/MangaColor/Fmark.resx b/MangaColor/MangaColor/Fmark.resx index c28a2c7..45940d1 100644 --- a/MangaColor/MangaColor/Fmark.resx +++ b/MangaColor/MangaColor/Fmark.resx @@ -120,10 +120,10 @@ - iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAIAAAAmdTLBAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAADsIAAA7CARUoSoAAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRy - oQAAAEdJREFUOE9j+I8XMDAwEFAwqh9fCAxo+AEthwA8LiQUveTFP6aduFwBdyMWBtzZRClC9iQJ9tMw - /Q5c+COH3Gj+xZtBKYx/AOVWopYTTKNKAAAAAElFTkSuQmCC + iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsEAAA7BAbiRa+0AAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRy + oQAAAENJREFUOE/tzEEKACAMA8H8/9OVFhSLN7t66kKOGdmDGuVrlK9Rvn+opNhtx3OCJXQ/E6C3UAr0 + AiVBL6FUCZ2rZTYApPaSwn2inqwAAAAASUVORK5CYII= \ No newline at end of file diff --git a/MangaColor/MangaColor/Form1.cs b/MangaColor/MangaColor/Form1.cs index d8a43ca..78a4f8f 100644 --- a/MangaColor/MangaColor/Form1.cs +++ b/MangaColor/MangaColor/Form1.cs @@ -125,11 +125,11 @@ } } - private Point MouseScreenPosition(int offs) + private Point MouseScreenPosition(int offsx,int offsy) { Point src = System.Windows.Forms.Cursor.Position; - src.X -= offs; - src.Y -= offs; + src.X -= offsx; + src.Y -= offsy; return src; } @@ -200,12 +200,12 @@ { if (mini != null) { - mini.Location = MouseScreenPosition(10); + mini.Location = MouseScreenPosition(-5,25); SetCl(CaptureColor(System.Windows.Forms.Cursor.Position)); } else { - Point src = MouseScreenPosition(szh - 1); + Point src = MouseScreenPosition(szh - 1, szh - 1); int offx = 2; int offy = 7; using (Bitmap bmp = CaptureImage(src)) diff --git a/MangaColor/res/Flecha.png b/MangaColor/res/Flecha.png new file mode 100644 index 0000000..47ab88f --- /dev/null +++ b/MangaColor/res/Flecha.png Binary files differ