示例#1
0
 public SelectOutput(UIElement image, InPoint inPoint, OutPoint outPoint1, OutPoint outPoint2)
 {
     Image = image;
     In    = inPoint;
     Out1  = outPoint1;
     Out2  = outPoint2;
 }
示例#2
0
        private InPoint CreateInPoint()
        {
            InPoint inPoint = new InPoint(CreatePointImage(), CreatePointLable());

            canvas.Children.Add(inPoint.Image);
            canvas.Children.Add(inPoint.Label);
            return(inPoint);
        }
示例#3
0
文件: Delay.cs 项目: Villdan/diploma
 public Delay(UIElement image, InPoint inPoint, OutPoint outPoint)
 {
     Image = image;
     In    = inPoint;
     Out   = outPoint;
     DelayDistributions.min = 0;
     DelayDistributions.max = 1;
 }
示例#4
0
文件: Queue.cs 项目: Villdan/diploma
 public Queue(UIElement image, InPoint inPoint, OutPoint outPoint, OutPoint throwOut, OutPoint throwOut2)
 {
     Image     = image;
     In        = inPoint;
     Out       = outPoint;
     ThrowOut  = throwOut;
     ThrowOut2 = throwOut2;
     TimeLimitDistributions.min = 0;
     TimeLimitDistributions.max = 1;
 }
示例#5
0
文件: Sink.cs 项目: Villdan/diploma
 public Sink(UIElement image, InPoint inPoint)
 {
     Image = image;
     In    = inPoint;
 }