예제 #1
0
        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
 public StreamDialog(StreamControl lf)
 {
     _lineFlow = lf;
     InitializeComponent();
     UpdateData(true);
 }
예제 #3
0
파일: DrawNodes.cs 프로젝트: siegjan6/HMI
 public DrawNodes()
 {
     Stream = new StreamControl(this);
 }