2010-11-20 4 views

答えて

0

Googleは一般的な質問にお答えします。このフォーラムは詳細な詳細な質問に役立ちます。

http://labviewwiki.org/Control_References

また、これはあなたの他のフォーラムの投稿にお答えします: http://forums.ni.com/t5/Measurement-Studio-for-NET/How-to-use-Property-node-in-Measurement-Studio/m-p/1317239

+0

:2番目のリンクは、私が知っている私の質問(すなわち、私の投稿者) –

+0

である私はそれがあまりにもTHEREあなたの質問にお答えしますと、なぜ、thatsの:) – halfevil

0

私は質問を理解していません。 LVのプロパティとメソッドのノードを使用するのと同じ方法で、プロパティとメソッドに標準のC#ドット表記法を使用できるはずです。例えば(hereから):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; 
... 
}