2

セクションでを作成するCollectionViewSourceと、リソースが初期化されるとき (すなわち、ホルダーが初期化されるとき)、またはデータがバインドされるときにセットがロードされますか?ResourcesSourceResources

遅延ロードを行うための適切な方法はありCollectionViewSourceますか? 据え置きロード? 明示的ロード?

4

1 に答える 1

0

答えは、は要求されない限りCollectionViewSourceそのプロパティを初期化しないということです!Source

これが私のテスト例です:

<Window 
    x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:src="clr-namespace:WpfApplication2">
  <Window.Resources>
    <CollectionViewSource x:Key="mySource">
      <CollectionViewSource.Source>
        <src:Collection />
      </CollectionViewSource.Source>
    </CollectionViewSource>
  </Window.Resources>
  <!--ListView ItemsSource="{Binding Source={StaticResource mySource}}"/-->
</Window>

Imports System.Collections.ObjectModel
Imports System.ComponentModel

Public Class Collection : Inherits ObservableCollection(Of String)
  Public Sub New()
    If Not DesignerProperties.GetIsInDesignMode(New DependencyObject) Then End

    For i = 1 To 10
      Add("Item " & i)
    Next
  End Sub
End Class

結果: がコメント解除された場合にのみ、プロジェクトがシャットダウンしListViewます。

于 2010-05-09T20:00:38.467 に答える