public FmapViewer(GanStudio parent, bool _colorblindMode = false) { InitializeComponent(); addFmapDelegate = new AddFmapDelegate(AddFmapMethod); parent.Invoke(parent.fmapsViewerStartedDelegate); colorblindMode = _colorblindMode; }
public BatchCreation(GanStudio parent) { InitializeComponent(); textDelegate = new SetProgressText(SetProgressTextMethod); finishedDelegate = new Finished(FinishedMethod); dirDelegate = new SetDirectory(SetDirMethod); MyParent = parent; MyParent.Invoke(MyParent.batchStartedDelegate); }
public FmapsForm(GanStudio parent) { InitializeComponent(); fmapSetDelegate = new SetFmapsValues(SetFmapValuesMethod); finishedDelegate = new Finished(FinishedMethod); MyParent = parent; MyParent.Invoke(MyParent.fmapsStartedDelegate); }
public FmapViewer(GanStudio parent) { InitializeComponent(); addFmapDelegate = new AddFmapDelegate(AddFmapMethod); parent.Invoke(parent.fmapsViewerStartedDelegate); }