示例#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);
 }
示例#3
0
文件: BaseDialog.cs 项目: tpb3d/TPB3D
 public BaseDialog(BaseFrameMgr frameMgr, byte windowType, string name, ResultHandlerDelegate resultHandler)
     : base(frameMgr, windowType, name)
 {
     this.resultHandler = resultHandler;
 }