My windows has many ListBoxes that load their items in the Loaded event. After they are all loaded I have to run a method. I found out that the Grid Loaded event happens before its controls Loaded. What method will fire once after that?
views:
23answers:
1
                
                A: 
                
                
              
            While this not answers the title question, it does solve my problem.
- The Initializedevents are fired prior theLoadedevents.
- When you have TabControlit will fire aTabItem's controlsLoadedevent every time theSelectedIndexchanges
Knowing that I:
- replaced every Loadedevent by aInitializedone and
- created a Loadedevent for theMainWindowthat will run after allInitialized
                  Jader Dias
                   2010-10-30 23:44:17