I am using C# with WPF.
I'm curious is it possible to, either in the XAML or the actual code to stop the transitioning effect of opening a new WPF Window?
I'm opening another window and it expands from the bottom left corner as if its opening a program for the first time. Is there a way I can stop this from happening?
I want it to have the same effect as when I do something like
Content = someusercontrolClassImade
I want it to just throw the content on the screen, not have the transitioning effect of a window opening up. Is this possible?
Thanks in advance
EDIT: Disable animation effects for windows with C# is not the answer to my question, not even sure how it is marked as an answer, it doesn't work at all.