/// <summary>
 /// 简单条件
 /// </summary>
 private void Createscb()
 {
     SimpleConditionBar scb = new SimpleConditionBar(TargetType,level);
     this.spDisplay.Children.Add(scb);
 }
コード例 #2
0
 private void Createscb()
 {
     SimpleConditionBar scb = new SimpleConditionBar(typeof(Customer));
     this.spDisplay.Children.Add(scb);
 }
コード例 #3
0
 private void btnSimpleCondition_Click(object sender, RoutedEventArgs e)
 {
     SimpleConditionBar scb = new SimpleConditionBar(typeof(Customer));
     this.spDisplay.Children.Add(scb);
 }