コード例 #1
0
ファイル: foodForm.cs プロジェクト: Colarsis/SR2D
        private void typesDeProduitsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            typesDeProduitsToolStripMenuItem.Enabled = false;

            foodTypeForm fTF = new foodTypeForm(this, cB);

            fTF.Show();
        }
コード例 #2
0
        public foodTypeInfoForm(foodTypeForm fTF, SR2DClassBound cB, DataRow refDR)
        {
            InitializeComponent();

            this.fTF   = fTF;
            this.cB    = cB;
            this.db    = cB.db;
            this.refDR = refDR;

            init();
        }
コード例 #3
0
ファイル: foodTypeAddForm.cs プロジェクト: Colarsis/SR2D
        public foodTypeAddForm(foodTypeForm fTF, SR2DClassBound cB)
        {
            InitializeComponent();

            this.fTF = fTF;
            this.cB  = cB;
            this.db  = cB.db;

            othersFoodTypeIDs = new List <int>();

            fillChListbox();
        }
コード例 #4
0
        public foodTypeModifyForm(foodTypeForm fTF, SR2DClassBound cB, DataRow refDR)
        {
            InitializeComponent();

            this.fTF   = fTF;
            this.cB    = cB;
            this.db    = cB.db;
            this.refDR = refDR;

            othersFoodTypeInitialState = new List <CheckState>();
            othersFoodTypeIDs          = new List <int>();

            fill();
        }