Visual Studio에서 dll 리소스를 통해 다른 파일 참조

872 단어
장면 적용:
프로그래밍 개발 과정에서 dll의 Resource를 통해 다음과 같이 봉인합니다: 1 text 파일;2 이미지 파일;3 icon 파일;4 기타 형식 파일;
세 가지 유형의 파일을 직접 추가하고 참조할 수 있습니다.
1 솔루션 폴더 오른쪽 클릭 > New Item > Resource File
2 Resource에 "128.ico"추가
3 호출 코드는 다음과 같습니다.
System.Drawing.Icon lightningIcon= Resource1._128;

4 리소스를 네 번째 파일로 삽입하려면 바이너리 파일을 임시 폴더에 다시 써야 합니다. 다음 코드를 사용하십시오.
string m_path = @"c: \\temp.wav";                                
            FileInfo m_FileInfo = new FileInfo(m_path);                   
            if (!m_FileInfo.Exists)                                      
            {
                using (FileStream fs = File.Create(m_path))
                {
                    fs.Write(Properties.Resource.  ,0, Properties.Resource.  .Length);
                }
            }

좋은 웹페이지 즐겨찾기