|
|
|
C# หาค่าสีที่เมาส์ชี้ เจอ Error Parameter must be positive and < Width. Parameter name: x แก้ยังไง |
|
|
|
|
|
|
|
C# หาค่าสีที่เมาส์ชี้ เจอ Error 'Parameter must be positive and < Width. Parameter name: x' แก้ยังไง
Code (VB.NET)
public void pictureEdit1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e )
{
GT_Color(cursor.X, cursor.Y);
}
public void GT_Color(int xx , int yy)
{
try
{
Bitmap b = new Bitmap(pictureEdit1.Image);
System.Drawing.Color CCC = b.GetPixel(xx, yy);
BB.Text = " | " + CCC.R.ToString() + ", " + CCC.G.ToString() + ", " + CCC.B.ToString() + " | ";
rr = int.Parse(CCC.R.ToString());
gg = int.Parse(CCC.G.ToString());
bb = int.Parse(CCC.B.ToString());
BB.BackColor = System.Drawing.Color.FromArgb(rr, gg, bb);
}
catch (InvalidCastException e)
{
}
}
Tag : .NET, C#, VS 2017 (.NET 4.x), Windows
|
|
|
|
|
|
Date :
2018-08-07 00:42:12 |
By :
kamasaigis |
View :
1168 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูเหมือนจะมีค่า บวก หรือ ลบ ไม่ถูกต้องนะครับ
|
|
|
|
|
Date :
2018-08-07 16:37:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สอบถามหน่อยครับ ผมเอา Try ครอบไว้แล้วทำไม Error แล้วไม่เด้งออกอ่ะครับ
|
|
|
|
|
Date :
2018-08-09 00:13:15 |
By :
kamasaigis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|