SetPointIncrementSize() private method

private SetPointIncrementSize ( string name, double value ) : void
name string
value double
return void
コード例 #1
0
ファイル: LockControlPanel.cs プロジェクト: eedm/EDMSuite
 private void setPointIncrementBox_TextChanged(object sender, EventArgs e)
 {
     try
     {
         controller.SetPointIncrementSize(name, Double.Parse(setPointIncrementBox.Text));
     }
     catch { }
 }