コード例 #1
0
ファイル: ChoseStand.cs プロジェクト: Mustack/ML-Forestry
        public ChoseStand(CoutingTable countingTable, Plot plot)
        {
            this.countingTable = countingTable;
            this.plot = plot;

            InitializeComponent();
        }
コード例 #2
0
ファイル: SiteClass.cs プロジェクト: Mustack/ML-Forestry
        public SiteClass(Plot plot, string species, int speciesIndex, CoutingTable countingTable)
        {
            this.plot = plot;
            this.species = species;
            this.speciesIndex = speciesIndex;
            this.countingTable = countingTable;

            InitializeComponent();
        }
コード例 #3
0
ファイル: ChoosePlot.cs プロジェクト: Mustack/ML-Forestry
 public ChoosePlot(Plot passedPlot, CoutingTable countingTable)
 {
     this.countingTable = countingTable;
     this.plot = passedPlot;
     InitializeComponent();
 }