Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Blend 中为我的 Silverlight 应用程序创建了一个用户界面。此应用程序当前正在使用我在 Blend 中创建的一些示例数据。我需要在运行时对这个示例数据做一些事情。
如何访问在运行时在 Blend 中创建的示例数据?
谢谢!
通常,此示例数据作为应用程序资源添加,其中SampleDataSource作为键。这意味着您可以像这样访问它:
((SampleDataSource)Application.Current.Resources["SampleDataSource"]).Collection
请注意,SampleDataSource 类位于 Expression.Blend.SampleData.SampleDataSource 命名空间中,因此可能需要使用。