- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 View 模型的数据模板,其中项目控件绑定(bind)到 CollectionViewSource(以启用 xaml 中的排序)。
<DataTemplate x:Key="equipmentDataTemplate">
<Viewbox>
<Viewbox.Resources>
<CollectionViewSource x:Key="viewSource" Source="{Binding Modules}">
<CollectionViewSource.SortDescriptions>
<scm:SortDescription PropertyName="ID" Direction="Ascending"/>
</CollectionViewSource.SortDescriptions>
</CollectionViewSource>
</Viewbox.Resources>
<ItemsControl ItemsSource="{Binding Source={StaticResource viewSource}}"
Height="{DynamicResource equipmentHeight}"
ItemTemplate="{StaticResource moduleDataTemplate}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
</ItemsControl>
</Viewbox>
</DataTemplate>
d:DataContext="{x:Static vm:DesignTimeHelper.Equipment}">
<ItemsControl ItemsSource="{Binding Modules}"
最佳答案
去过那里(至少现在):)
这是我找到的解决方案。诀窍是覆盖 CollectionViewSource 设计时的源。我使用 d:DesignSource
使用另一个静态资源设计时的属性:
<Window.Resources>
<CollectionViewSource x:Key="ViewSource"
Source="{Binding ModelProperty}"
d:DesignSource="{{x:Static MyProg:DesignTimeData.MyList}">
<!-- Contents -->
</CollectionViewSource>
</Window.Resources>
<!-- No change to the using class -->
<ListBox ItemsSource="{Binding Source={StaticResource ViewSource}}">
</ListBox>
关于wpf - 与 CollectionViewSource 绑定(bind)时,DesignTime 数据未显示在 Blend 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1447962/
我正在 Xamarin.iOS 和 MvvmCross 平台上开发应用程序。我使用 xib 文件而不是 Storyboard来设计界面(我的应用程序中基于 ViewModel 的导航)。我如何使用 X
我有这个问题,我创建了自己的 datagridviewcolumn,我希望添加一些您可以在设计时编辑中更改的属性...这是我的代码: private int nMaxLength; [Descript
背景 Google 添加了很好的“Designtime Attributes”(从 here 找到)仅用于 UI 设计器模式,因此,例如,如果您希望在 textView(或 EditText)上显示文
我想在Delphi中创建一个在某种程度上可编辑的图形组件在设计时编辑器内。 我想知道 我应该继承什么组件(例如 TWinControl 或其他) 如何处理组件消息 (CM_xxx),以便能够在编辑器中
一个简单的问题,有谁知道如何检测代码是否在 WP7 的设计时执行? HtmlPage.IsEnabled 的常用 Silverlight 解决方案在此上下文中不起作用。 最佳答案 尝试使用 Desig
如何在 DesignTime 中将firedac 配置为数据库 firebird 的相对路径 object Conn: TFDConnection Params.Strings = ( 'Da
如何在 WinRT XAML 中获取 DesignTime 数据以便设计器显示示例数据? 最佳答案 足够简单。 像这样创建一个模型: public class Fruit { public s
vs2019报错内容: 配置“Debug|Win32”的 Designtime 生成失败。IntelliSense 可能不可用 出错内容 错误 : 项目“D:\mTensorf
我在 .NET 4.0 项目中使用 FSharp.Data.1.1.10,当我使用 Nuget 添加 FSharp.Data 时,它会创建一个 包\FSharp.Data.1.1.10\lib\net
我有一个 View 模型的数据模板,其中项目控件绑定(bind)到 CollectionViewSource(以启用 xaml 中的排序)。
我有一个包含以下代码的 F# 库项目(不可移植库): let db = new ApiaryProvider("http://api.themoviedb.org") db.AddQuer
我是一名优秀的程序员,十分优秀!