본문 바로가기

Programing (프로그래밍)/WPF & C# (C Sharp)

WPF & C# - 실행파일명 확인하기 ( Environment.GetCommandLineArgs() )

728x90
반응형


 WPF & C# - 실행파일명 확인하기 ( Environment.GetCommandLineArgs() )



MainWindow.xaml.cs



1
2
3
4
5
6
7
8
9
10
11
private void Window_Loaded(object sender, RoutedEventArgs e)
{
    lbl.Content = "";
    if (args.Count() == 2) lbl.Content += args[1]  + "\n";   // 실행 파일명
 
    string[] args = Environment.GetCommandLineArgs();
    foreach (string str in args)   // 실행 파일이 다수인경우
    {
        lbl.Content += str + "\n";
    }
}
cs




728x90
반응형