i looked up the error on ms docs and what i think im doing wrong is that im not referencing something but im not sure what to referense error: 'OtherWindow' does not contain a definition for 'OtherWindow' and no accessible extension method 'OtherWindow' accepting a first argument of type 'OtherWindow' could be found (are you missing a using directive or an assembly reference?)
You can use the Application object’s Windows property to get a list of all active windows. If you then cast to your specific subclass of Window, you can interact with the various child windo…