57129559af
- aggiunto WebTest per configuratore finestra complesso
80 lines
1.5 KiB
C#
80 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static WebWindowComplex.Json.WindowConst;
|
|
|
|
namespace WebWindowComplex
|
|
{
|
|
public class ItemTable
|
|
{
|
|
private AreaTypes m_type;
|
|
public AreaTypes Type
|
|
{
|
|
get
|
|
{
|
|
return m_type;
|
|
}
|
|
set
|
|
{
|
|
m_type = value;
|
|
}
|
|
}
|
|
|
|
private string m_desc;
|
|
public string Desc
|
|
{
|
|
get
|
|
{
|
|
return m_desc;
|
|
}
|
|
set
|
|
{
|
|
m_desc = value;
|
|
}
|
|
}
|
|
|
|
private int m_row;
|
|
public int Row
|
|
{
|
|
get
|
|
{
|
|
return m_row;
|
|
}
|
|
set
|
|
{
|
|
m_row = value;
|
|
}
|
|
}
|
|
|
|
private int m_col;
|
|
public int Col
|
|
{
|
|
get
|
|
{
|
|
return m_col;
|
|
}
|
|
set
|
|
{
|
|
m_col = value;
|
|
}
|
|
}
|
|
|
|
public ItemTable( string s_description, int n_row, int n_col)
|
|
{
|
|
m_desc = s_description;
|
|
Row = n_row;
|
|
Col = n_col;
|
|
}
|
|
|
|
public ItemTable(AreaTypes elementType, string s_description,int n_row, int n_col)
|
|
{
|
|
Type = elementType;
|
|
m_desc = s_description;
|
|
Row = n_row;
|
|
Col = n_col;
|
|
}
|
|
}
|
|
}
|