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

            MyParent = parent;
            MyParent.Invoke(MyParent.fmapsStartedDelegate);
        }
Example #4
0
 public FmapViewer(GanStudio parent)
 {
     InitializeComponent();
     addFmapDelegate = new AddFmapDelegate(AddFmapMethod);
     parent.Invoke(parent.fmapsViewerStartedDelegate);
 }