2010-11-20 17 views

cevap

0

:

http://labviewwiki.org/Control_References

Bu

da diğer forum yazılan cevap verecektir. Özellikler ve yöntemler için standart C# nokta gösterimini, LV'nin özellik ve yöntem düğümlerini kullanacağınız şekilde kullanabilmeniz gerekir. ( here itibaren) Örneğin:

halfevil @
using NationalInstruments.UI.WindowsForms; 
private NationalInstruments.UI.WindowsForms.Slide noiseSlide; 
private void InitializeComponent() 
{ 
... 
this.noiseSlide.FillBaseValue = -20; 
this.noiseSlide.Location = new System.Drawing.Point(8, 136); 
this.noiseSlide.Name = "noiseSlide"; 
this.noiseSlide.Range = new NationalInstruments.UI.Range(-100, 0); 
this.noiseSlide.ScalePosition = NationalInstruments.UI.NumericScalePosition.Bottom; 
... 
}