开发者

How to Delay XAML Binding until after Loaded

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 fro开发者_C百科m 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?


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.


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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜