예제 #1
0
        public StockPrompt()
        {
            InitializeComponent();
            this.productList = manager.StockPrompt();
            this.bindingSource1.DataSource = this.productList;
            //if (BL.Settings.StockPromptFlag == "1")
            //    this.checkEdit1.Checked = true;
            //else
            //    this.checkEdit1.Checked = false;

            this.checkEdit1.Checked = BL.V.ActiveOperator.IsShowStockPrompt;
            this.StartPosition      = FormStartPosition.CenterScreen;
        }
예제 #2
0
 public StockPrompt()
 {
     InitializeComponent();
     this.productList = manager.StockPrompt();
     this.bindingSource1.DataSource = this.productList;
     if (BL.Settings.StockPromptFlag == "1")
     {
         this.checkEdit1.Checked = true;
     }
     else
     {
         this.checkEdit1.Checked = false;
     }
     this.StartPosition = FormStartPosition.CenterScreen;
 }