Exemplo n.º 1
0
 public void AddImage(NSImage image, QTTime forDuration, QTImageAttributes attributes)
 {
     if (attributes == null)
     {
         throw new ArgumentNullException("attributes");
     }
     AddImage(image, forDuration, attributes.ToDictionary());
 }
Exemplo n.º 2
0
        public QTTimeRange(QTTime time, QTTime duration)
        {
#if XAMCORE_2_0
            this.time     = time;
            this.duration = duration;
#else
            Time     = time;
            Duration = duration;
#endif
        }
Exemplo n.º 3
0
 public QTTimeRange(QTTime time, QTTime duration)
 {
     this.time     = time;
     this.duration = duration;
 }