sfi count 등록 및 추가
This commit is contained in:
@@ -115,6 +115,7 @@ namespace FPJ0000.Project
|
||||
var itemh = (rect.Height / rowcount) - (itemp * (rowcount - 1));
|
||||
for (int i = 0; i < colcount; i++)
|
||||
{
|
||||
// if (i >= 11) continue;
|
||||
for (int j = 0; j < rowcount; j++)
|
||||
{
|
||||
var r = new RectangleF(
|
||||
@@ -128,8 +129,13 @@ namespace FPJ0000.Project
|
||||
var data = items[cnt - 1];
|
||||
|
||||
var no = j * colcount + i + 1;
|
||||
if (cnt == 12) continue;
|
||||
|
||||
if (cnt >= 12) continue;
|
||||
|
||||
if(no ==11)
|
||||
{
|
||||
cnt += 1;
|
||||
continue;
|
||||
}
|
||||
pe.Graphics.DrawRectangle(Pens.White, r.Left, r.Top, r.Width, r.Height);
|
||||
|
||||
var rno = new RectangleF(r.Left, r.Top, 50f, 50f);
|
||||
|
||||
Reference in New Issue
Block a user