public FramesCaptureProgressDialog(FramesSeriesCapturer capturer) { this.Build(); this.Deletable = false; this.capturer = capturer; capturer.Progress += Update; capturer.Start(); }
public FramesCaptureProgressDialog(FramesSeriesCapturer capturer, Gtk.Window parent) { TransientFor = parent; this.Build (); this.Deletable = false; this.capturer = capturer; capturer.Progress += Update; capturer.Start (); }