Application.StartupPath

응용 프로그램을 시작한 실행 파일의 경로(실행 파일 이름 제외)를 가져옵니다.

private void PrintStartupPath() {
    textBox1.Text = "The path for the executable file that " +
       "started the application is: " +
       Application.StartupPath;
 }

 

Application.OpenForms

응용 프로그램에서 소유하는 열려 있는 폼의 컬렉션을 가져옵니다

 

Application..::.CurrentCulture

현재 스레드에 대한 문화권 정보를 가져오거나 설정합니다.

 

Application..::.CompanyName

응용 프로그램과 관련된 회사 이름을 가져옵니다.

 

Application..::.CurrentCulture

현재 스레드에 대한 문화권 정보를 가져오거나 설정합니다.

private void PrintCurrentCulture() {
    textBox1.Text = "The current culture is: " +
       Application.CurrentCulture.EnglishName;
 }

+ Recent posts