コード例 #1
0
ファイル: MAS345Lib.cs プロジェクト: libesz/MAS345_GUI
 public MasEmulator()
 {
     _LastMeasure = new MeasureUnit(DateTime.Now, MeasureType.DcVoltage, 0.0);
 }
コード例 #2
0
ファイル: MAS345Lib.cs プロジェクト: libesz/MAS345_GUI
 public MeasureUnit(MeasureUnit TheOther)
     : this(TheOther.Time, TheOther.Type, TheOther.Value)
 {
 }
コード例 #3
0
ファイル: MainForm.cs プロジェクト: libesz/MAS345_GUI
 public MeasureListItem(MeasureUnit TheOther)
     : base(TheOther)
 {
     this.ItemComment = "";
     this.ItemColor = Color.White;
 }
コード例 #4
0
 public MasEmulator()
 {
     _LastMeasure = new MeasureUnit(DateTime.Now, MeasureType.DcVoltage, 0.0);
 }
コード例 #5
0
 public MeasureUnit(MeasureUnit TheOther) : this(TheOther.Time, TheOther.Type, TheOther.Value)
 {
 }
コード例 #6
0
ファイル: MainForm.cs プロジェクト: balazs4/MAS345_GUI
 public MeasureListItem(MeasureUnit TheOther)
     : base(TheOther)
 {
     this.ItemComment = "";
     this.ItemColor   = Color.White;
 }