예제 #1
0
파일: Loader.cs 프로젝트: aeesky/MyFirstMEF
        private void OpenRecentDocument(object file)
        {
            if (file == null)
            {
                return;
            }
            IOpenFileService service = _weakCont.Get().Resolve <IOpenFileService>();

            service.OpenFromID(file as string);
        }