Example #1
0
        public SelectProductCommand()
        {
            this.RefProperty = ProductRefItem.ProductIdProperty;
            this.Template = new ProductModule();

            //选择商品界面不需要显示附件
            this.Template.BlocksDefined += (o, e) =>
            {
                e.Blocks.Children.Clear();
            };
        }
Example #2
0
 public AddBill()
 {
     this.Template = new BillTemplate();
 }
Example #3
0
 public ShowBill()
 {
     this.Template = new ReadonlyBillTemplate();
 }