コード例 #1
0
ファイル: Drive.cs プロジェクト: vashkan/DriveMonitor
 public Client(Drive Motors) : this()
 {
     this.Motors = Motors;
     new Thread(new ThreadStart(Start)).Start();
 }
コード例 #2
0
ファイル: Drive.cs プロジェクト: vashkan/DriveMonitor
 public Client(Drive Motors)
     : this()
 {
     this.Motors = Motors;
     new Thread(new ThreadStart(Start)).Start();
 }
コード例 #3
0
ファイル: Form1.cs プロジェクト: vashkan/DriveMonitor
 public Form1()
 {
     InitializeComponent();
     Motors = new Drive();
     Pult = new Client(Motors);
 }
コード例 #4
0
ファイル: Form1.cs プロジェクト: vashkan/DriveMonitor
 public Form1()
 {
     InitializeComponent();
     Motors = new Drive();
     Pult   = new Client(Motors);
 }