コード例 #1
0
ファイル: StreamControl.cs プロジェクト: siegjan6/HMI
        public object Clone()
        {
            StreamControl other = new StreamControl(_content);

            other.IsForward   = this.IsForward;
            other._stepLength = this._stepLength;
            other.Interval    = this.Interval;
            other.Enable      = this.Enable;
            this.Enable       = false;
            return(other);
        }
コード例 #2
0
ファイル: StreamDialog.cs プロジェクト: siegjan6/HMI
 public StreamDialog(StreamControl lf)
 {
     _lineFlow = lf;
     InitializeComponent();
     UpdateData(true);
 }
コード例 #3
0
ファイル: DrawNodes.cs プロジェクト: siegjan6/HMI
 public DrawNodes()
 {
     Stream = new StreamControl(this);
 }