BattleInfoPlugin.Views.BattleWindow.BattleWindow C# (CSharp) 메소드

BattleWindow() 공개 메소드

public BattleWindow ( ) : System
리턴 System
        public BattleWindow()
        {
            InitializeComponent();
            WeakEventManager<Window, EventArgs>.AddHandler(
                Application.Current.MainWindow,
                "Closed",
                (_, __) => this.Close());
            this.Owner = Application.Current.MainWindow;
        }
BattleWindow