Exemplo n.º 1
0
        public ImageLoadJobObject(string filePath, bool bundled, bool scaleForDpi, ResultHandlerDelegate resultHandler)
        {
            FilePath = filePath;

            Bundled = bundled;

            ScaleForDPI = scaleForDpi;

            ResultHandler = resultHandler;
        }
 public ResultHandlerDelegate MathDelegate;                                  //tänk objekt ish
 public DelegateHandlerClass()
 {
     MathDelegate = new ResultHandlerDelegate(AddNumbers);
 }
Exemplo n.º 3
0
 public BaseDialog(BaseFrameMgr frameMgr, byte windowType, string name, ResultHandlerDelegate resultHandler)
     : base(frameMgr, windowType, name)
 {
     this.resultHandler = resultHandler;
 }