2020년 7월 1일 수요일

Single Instance Application

        

        protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
string mutexName = "회사명. 고객관리";
bool bCreateNew;

mutex = new Mutex(true, mutexName, out bCreateNew);

if(!bCreateNew)
{
Shutdown();
}
}

이러면 전역적으로 단 하나의 프로그램만 실행된다.

댓글 없음:

댓글 쓰기

List