- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想这是一个简单的数据绑定(bind)问题,但我无法让它工作。我有一个 DataGrid、一个带有 Observable 集合的 ViewModel 和一个表示该集合中对象的类。 DataGrid 有两列:DataGridTextColumn 和DataGridTemplateColumn。数据与 DataGridTextColumn 的绑定(bind)有效,但与 DataGridTemplateColumn 的绑定(bind)无效。相应的列只是保持为空。
代码如下:
这是我的数据网格:
<DataGrid x:Name="tdg_Memory" Grid.Column="1" Margin="0" Grid.Row="4" VerticalScrollBarVisibility="Visible" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn x:Name="MemoryIndexColumn" Header="Index"/>
<DataGridTemplateColumn x:Name="MemorySolutionColumn" CellTemplate="{DynamicResource MemorySolutionCellTemplate}" Header="Solution"/>
<DataGrid.Columns>
<DataGrid>
这是数据模板:
<DataTemplate x:Key="MemorySolutionCellTemplate">
<Grid x:Name="grd_RootGrid" Height="Auto" Width="Auto" HorizontalAlignment="Left" VerticalAlignment="Top">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Label x:Name="lbl_ValueCaption" Content="Value:" Margin="0" Grid.Row="0" Height="Auto" VerticalAlignment="Top" HorizontalAlignment="Right"/>
<Label x:Name="lbl_FitnessCaption" Content="Fitness:" Margin="0" Grid.Row="1" HorizontalAlignment="Right" VerticalAlignment="Top"/>
<Label x:Name="lbl_ValueValue" Content="65665" Grid.Column="1" Height="Auto" Margin="12,0,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"/>
<Label x:Name="lbl_FitnessValue" Content="121212" Grid.Column="1" Margin="12,0,0,0" Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Top"/>
</Grid>
</DataTemplate>
数据绑定(bind)发生在代码后面:
// setting the itemsSource (seems to work)
jobItem.tdg_Memory.ItemsSource = jobModel.Memory;
// binding of the first column (DataGridTextColumn) seems to work
Binding memoryIndexColumnBinding = new Binding();
memoryIndexColumnBinding.Path = new PropertyPath("Index");
jobItem.MemoryIndexColumn.Binding = memoryIndexColumnBinding;
这是 ViewModel:
// the observable collection that holds the data for the DataGrid
private ThreadSafeObservableCollection<MemoryItemRepresentative> _memory;
public ThreadSafeObservableCollection<MemoryItemRepresentative> Memory {
get { return _memory; }
set {
_memory = value;
FirePropertyChanged("Memory");
}
}
以下是集合中包含的对象:
public class MemoryItemRepresentative : ViewModelBase {
private int _index;
public int Index {
get { return _index; }
set {
_index = value;
FirePropertyChanged("Index");
}
}
private MPBILSolution _solution;
public MPBILSolution Solution {
get { return _solution; }
set {
_solution = value;
FirePropertyChanged("Solution");
}
}
public MPBILPropabilityVector PropabilityVector;
public MemoryItemRepresentative () {
}
}
MBILSolution 是(但这应该与该问题无关):
public class MPBILSolution : ISolution {
public int Position { get; set; }
public BinaryNumber Value { get; set; }
public double Fitness { get; set; }
}
我现在想做的是将 DataGrid 的第一列(DataGridTextColumn)绑定(bind)到 MemoryItemRepresentative 类的 Index 属性,这样效果很好。
此外,我想显示 MPBILSolution 对象的内容(由属性 Position、Value 和 Fitness 组成)绑定(bind)到第二列(DataGridTemplateColumn)。出于这个原因,我构建了 DataTemplate,其中包含一个 Value 属性标签和一个 Fitness 属性标签。
我没有发布不起作用的实际绑定(bind)代码,因为我的问题似乎是 DataGrid 的相应列始终为空。至少 DataTemplate 中的静态标签(用于字幕)应该是可见的?
所以我非常感谢任何帮助。根据要求提供任何进一步的代码......
附录:
好吧,现在实际的绑定(bind)似乎出了问题:在 DataGrid 中,我现在可以在列中看到 DataTemplate,但缺少 MPBILSolution 对象的值:
下面是我如何将此对象绑定(bind)到 DataTemplate:
DataTemplate memorySolutionCellTemplate = (DataTemplate)jobItem.FindResource("MemorySolutionCellTemplate");
DependencyObject o = memorySolutionCellTemplate.LoadContent();
Label l = (Label)VisualTreeAssistant.FindFrameworkElement(o, "lbl_FitnessValue");
Binding fitnessValueBinding = new Binding();
fitnessValueBinding.Path = new PropertyPath("Fitness");
fitnessValueBinding.Mode = BindingMode.OneWay;
l.SetBinding(Label.ContentProperty, fitnessValueBinding);
对象 l 似乎得到了正确的 Label 对象所以问题似乎出在这个绑定(bind) block 的最后四行?
请再次帮助:)
最佳答案
为什么是 DynamicResource
?如果你可以使用 StaticResource
这样做,DynamicResource
可以对我认为的错误保持安静(可能检查输出窗口)...
关于c# - DataGrid 和 DataTemplate 的数据绑定(bind)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11494662/
我正在使用 DataTemplate 将 View 应用于 ViewModel。我有一种情况,当 View 的一个实例(DataTemplate)中发生某件事时,我需要在所有其他实例中采取行动。 我已
如何从 DataTemplate 派生新类,然后用它代替 DataTemplate? 例如,在 C# 中: public class DerivedDataTemplate : DataTemplat
我有以下xaml; 当我使用 Node 模板显示 No
我想在 dataTemplate 中使用 dataTemplale。我想像这样在列表框中显示数据: 这就是我得到的。它不起作用。 cl
大家好,我正在尝试更改 dataGrid 中列的模板,但我找不到在 XAML 中执行此操作的方法。我正在尝试通过这种方式来做
wpf 应用程序中的默认 DataTemplate 显示 .ToString() 方法的结果。我正在开发一个默认 DataTemplate 不显示任何内容的应用程序。 我试过:
我发现自己有点束手无策……有束缚……呵呵……(跛脚) 无论如何...我需要引用主 ViewModel 的属性,但来自 DataTemplate ,它本身在另一个 DataTemplate 中... 看
我已经为我喜欢的项目中的一些数据类型创建了几个数据模板。这些数据模板真的很酷,因为它们像魔术一样工作,无论何时何地出现在 UI 中,都神奇地改变了数据类型实例的外观。现在我希望能够在一个特定的列表框中
这个问题在这里已经有了答案: 11年前关闭。 Possible Duplicate: Datatemplate inheritance 我有几个不是子类的数据类型,它们也不共享一个接口(interfa
我有一个用代码隐藏在 XAML 中定义的 ResouceDictionary。我需要使用鼠标事件和数据绑定(bind)定义一些特定于 View 的行为,为此我需要访问在 DataTemplate 中定
我有一个用代码隐藏在 XAML 中定义的 ResouceDictionary。我需要使用鼠标事件和数据绑定(bind)定义一些特定于 View 的行为,为此我需要访问在 DataTemplate 中定
我创建了一个 DataTemplateSelector,它使用一组已知接口(interface)进行初始化。如果传递到选择器的项目实现了这些接口(interface)之一,则返回关联的数据模板。 首先
是否可以将数据模板用于没有 ListBox 或其他项目控件的单个项目? 我有一个数据模板,我想在 xaml 中实例化,而不是在列表中,只是在边框内,并设置其数据上下文。 类似(伪):
在我的 MainWindow.xaml 中,我对 ResourceDictionary 有以下引用: 在 Main
我在数据模板中有 WPF ComboBox(列表框中有很多组合框),我想处理输入按钮。如果它是例如,那将很容易。一个按钮 - 我会使用命令 + 相对绑定(bind)路径等。不幸的是,我不知道如何使用命
我想对 ItemsCollection 进行数据绑定(bind),但不是渲染集合项,而是渲染通过集合项上的属性到达的子对象。 更具体地说:这将是游戏的 2D map 查看器(尽管在当前状态下它还不是
我使用 MasterDetailsView控制。它有 MasterHeaderTemplate属性(property)。我想添加一个 TextBox以便执行元素搜索。我不明白该怎么做。因为DataTe
我为自己设计的一个非常基本的 WPF 练习遇到了一个奇怪的问题,即从 ViewModel 动态填充菜单。给定以下主窗口标记:
在设计新的 WPF 应用程序时,我注意到在使用 DataTemplates 对控件进行数据绑定(bind)期间不会抛出异常。为了测试,我用尽可能少的逻辑编写了以下简单的用户控件。我正在使用在 WIN7
我有一个关于 this one 的问题:我正在尝试将一个事件附加到我的 StackPanel,但在使用 XamlReader 时它似乎没有连接。我无法调用 ChildItem_Load 方法。有谁知道
我是一名优秀的程序员,十分优秀!