프로그래밍 연습하기

C# WPF 다른 창에 있는 정보 가져오기 본문

C#

C# WPF 다른 창에 있는 정보 가져오기

john.k 2020. 7. 31. 23:57
반응형

https://stackoverflow.com/questions/30063550/how-should-i-pass-data-between-wpf-windows-involving-mainwindow-c

 

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).메인_윈도우의_요소

이런 식으로 다른 창의 정보를 가져올 수 있습니다.

반응형
Comments