sp; private bool 二折连(int x1, int y1, int x2, int y2) { try { if (右边(x1, y1, x2, y2) == true) { return true; } if (上边(x1, y1, x2, y2) == true) { return true; } if (左边(x1, y1, x2, y2) == true) { return true; } if (下边(x1, y1, x2, y2) == true) { return true; } } catch (Exception ex) { MessageBox.Show(ex.Message, "趙趑龍提示:", MessageBoxButtons.OK, MessageBoxIcon.Information); //return false; } return false;
<< 上一页 [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] ... 下一页 >>