Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Look at this:

<ItemsControl ItemsSource="{x:Static local:Cache.Colors}" />

This binds the ItemsControl to a static property called List. In this case, the Colors property is part of a class called Cache.

But there is a problem. When you bind in this way, the Colors property is called during the Initialize method, prior to when Security is established in the application.

Because Security has not been established, then calling Colors results in an exception as Security is a requirement for successfully calling the data service.

The solution moves this from XAML to code behind and ensures it is executed in the Loaded event instead of in the constructor during Initialize.

The real problem here is, I would like to do this in XAML. Is it possible?

share|improve this question
1  
Why can't you “initialize security” before opening the window, or before calling InitializeComponent() in the Window's constructor? – svick Jun 27 '11 at 22:43
It's MainWindow. I could create PreMainWindow, I suppose. – Jerry Nixon - MSFT Jun 28 '11 at 16:51
so what? You can have code in App.xaml that's called before the window is created or in MainWindow's constructor before the XAML is actually read. – svick Jun 28 '11 at 17:04

2 Answers

I have typically solved this by having the ItemsSource being bound to implement the INotifyCollectionChanged interface. At initialization the items source would be empty, and then at load time the items source is populated. The population of the items source raises the collection changed event, causing your items control to rebind/add the new items in the source.

share|improve this answer
This does not work because the Collection property will fail and never raise the Changed event since the Binding considers it in an error state. – Jerry Nixon - MSFT Jun 28 '11 at 16:52
Can you post your XAML and view model? Using a notifying item source shouldn't be throwing an error. – Oppositional Jun 29 '11 at 18:45
up vote 0 down vote accepted

My solution was to run it in the App.xaml.cs before anything else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.