コード例 #1
0
 public void FillBoxes(TextBox boxLower, TextBox boxUpper,
                       TextBox boxPosition, TextBox boxVelocity, string format)
 {
     boxLower.Text    = SoftLowerAttribute.GetTextFromDoubleValue();
     boxUpper.Text    = SoftUpperAttribute.GetTextFromDoubleValue();
     boxPosition.Text = KPositionAttribute.GetTextFromDoubleValue();
     boxVelocity.Text = KVelocityAttribute.GetTextFromDoubleValue();
 }
コード例 #2
0
 public void FillBoxes(TextBox boxLower, TextBox boxUpper,
                       TextBox boxEffort, TextBox boxVelocity, string format)
 {
     boxLower.Text    = LowerAttribute.GetTextFromDoubleValue(format);
     boxUpper.Text    = UpperAttribute.GetTextFromDoubleValue(format);
     boxEffort.Text   = EffortAttribute.GetTextFromDoubleValue(format);
     boxVelocity.Text = VelocityAttribute.GetTextFromDoubleValue(format);
 }
コード例 #3
0
 public void FillBoxes(TextBox boxIxx, TextBox boxIxy, TextBox boxIxz,
                       TextBox boxIyy, TextBox boxIyz, TextBox boxIzz, string format)
 {
     boxIxx.Text = IxxAttribute.GetTextFromDoubleValue(format);
     boxIxy.Text = IxyAttribute.GetTextFromDoubleValue(format);
     boxIxz.Text = IxzAttribute.GetTextFromDoubleValue(format);
     boxIyy.Text = IyyAttribute.GetTextFromDoubleValue(format);
     boxIyz.Text = IyzAttribute.GetTextFromDoubleValue(format);
     boxIzz.Text = IzzAttribute.GetTextFromDoubleValue(format);
 }
コード例 #4
0
 public void FillBoxes(TextBox boxRising, TextBox boxFalling, string format)
 {
     boxRising.Text  = RisingAttribute.GetTextFromDoubleValue(format);
     boxFalling.Text = FallingAttribute.GetTextFromDoubleValue(format);
 }
コード例 #5
0
 public void FillBoxes(TextBox boxDamping, TextBox boxFriction, string format)
 {
     boxDamping.Text  = DampingAttribute.GetTextFromDoubleValue();
     boxFriction.Text = FrictionAttribute.GetTextFromDoubleValue();
 }
コード例 #6
0
 public void FillBoxes(TextBox box, string format)
 {
     box.Text = ValueAttribute.GetTextFromDoubleValue(format);
 }