コード例 #1
0
ファイル: CarController.cs プロジェクト: Spawek/valeo
 private void CarComunicator_evBrakePositionReceived(object sender, BrakePositionReceivedEventArgs args)
 {
     Model.CarInfo.CurrentBrake = args.GetPosition();
 }
コード例 #2
0
 void CarComunicator_evBrakePositionReceived(object sender, BrakePositionReceivedEventArgs args)
 {
     UpdateTextBlock(textBlock_currentBrake, args.GetPosition(), currentBrakeLabelData);
 }
コード例 #3
0
 private void CarComunicator_evBrakePositionReceived(object sender, BrakePositionReceivedEventArgs args)
 {
     Model.CarInfo.CurrentBrake = args.GetPosition();
 }
コード例 #4
0
ファイル: MainWindow.xaml.cs プロジェクト: rAum/auton_net
 void CarComunicator_evBrakePositionReceived(object sender, BrakePositionReceivedEventArgs args)
 {
     UpdateTextBlock(textBlock_currentBrake, args.GetPosition(), currentBrakeLabelData);
 }