コード例 #1
0
ファイル: DockItem.cs プロジェクト: pakoito/CraftworkGames
 public DockItem(Control control, DockStyle dockStyle)
 {
     Control = control;
     DockStyle = dockStyle;
 }
コード例 #2
0
ファイル: GridItem.cs プロジェクト: pakoito/CraftworkGames
 public GridItem(Control control, int row, int column)
 {
     Control = control;
     Row = row;
     Column = column;
 }
コード例 #3
0
 public RelativeItem(Control control, int x, int y)
 {
     X = x;
     Y = y;
     Control = control;
 }