示例#1
0
 public RealVariableGrid(tblVariable tocopy)
     : base(tocopy)
 {
     try
     {
         tblREAL tblreal = new tblREAL();
         tblreal.VarNameID = this.VarNameID;
         tblreal.SelectVarID();
         this.UNI = tblreal.UNI;
         this.FOR = tblreal.FOR;
         this.IRL = tblreal.IRL;
         this.IRH = tblreal.IRH;
         this.LL  = tblreal.LL;
         this.HH  = tblreal.HH;
         this.L   = tblreal.L;
         this.H   = tblreal.H;
         Loaded   = true;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
示例#2
0
 public bool Contains(tblREAL item)
 {
     return(List.Contains(item));
 }
示例#3
0
 public int IndexOf(tblREAL item)
 {
     return(List.IndexOf(item));
 }
示例#4
0
 public void Insert(int index, tblREAL item)
 {
     List.Insert(index, item);
     this.OntblREALChanged(EventArgs.Empty);
 }
示例#5
0
 public void Remove(tblREAL item)
 {
     List.Remove(item);
     this.OntblREALChanged(EventArgs.Empty);
 }
示例#6
0
 public void Add(tblREAL item)
 {
     List.Add(item);
     this.OntblREALChanged(EventArgs.Empty);
 }