C#
C# WPF 다른 창에 있는 정보 가져오기
john.k
2020. 7. 31. 23:57
반응형
How should I pass data between WPF Windows involving `MainWindow` (C#)?
I am currently starting a C# project in which I am modelling a simple ATM machine, and will therefore need several screens. I have run into the problem of passing data between screens before when I...
stackoverflow.com
스택오버플로를 참고하였습니다.
((MainWindow)Application.Current.MainWindow).메인_윈도우의_요소
이런 식으로 다른 창의 정보를 가져올 수 있습니다.
반응형