- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有主要的 DataGrid
用于显示文档列表。此 MainGrid
具有在 XAML
中指定的 DataGrid.RowDetailsTemplate
。
此 DataGrid.RowDetailsTemplate
包含一个(内部或嵌套的)DataGrid
。
所以 MainGrid
的每一行都包含 DataGrid.RowDetailsTemplate
和内部 DataGrid
。
我需要获取仅具有 MainGrid
引用的所有内部(嵌套)DataGrid
的列表。我试过 Visual/Logil Tree 助手,但两者都没有为 GetChildren 调用返回任何内容...
从DataGrid.RowDetails
获取嵌套DataGrid
的方法是什么?
复现步骤:1) 在 Visual Studio 2013 或更高版本中创建 Windows 桌面 -> WPF 应用程序(空)2) 使用下面的代码示例:
主窗口.xaml
<Window x:Class="ExampleNestedGrid.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<ToolBar Grid.Row="0" Header="Action:">
<Button x:Name="RefreshBtn" Command="{Binding RefreshCommand}">Refresh</Button>
</ToolBar>
<DataGrid x:Name="MainGrid" ItemsSource="{Binding Documents}" AutoGenerateColumns="False" Grid.Row="1">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding Name, Mode=OneWay}" Width="*"/>
<DataGridTextColumn Binding="{Binding Number, Mode=OneWay}" Width="*"/>
</DataGrid.Columns>
<DataGrid.RowDetailsTemplate>
<DataTemplate>
<Grid>
<DataGrid x:Name="NestedGrid" ItemsSource="{Binding LinkedEmployees}" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding Id, Mode=OneWay}" Width="150"/>
<DataGridTextColumn Binding="{Binding Name, Mode=OneWay}" Width="150"/>
<DataGridTextColumn Binding="{Binding Status, Mode=OneWay}" Width="150"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</DataTemplate>
</DataGrid.RowDetailsTemplate>
</DataGrid>
</Grid>
</Window>
主窗口.xaml.cs
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace ExampleNestedGrid
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
DataContext = new DisplayViewModel(MainGrid);
}
}
public class DisplayViewModel : PropertyBase
{
private DataGrid MainGrid;
public DisplayViewModel(DataGrid MainGrid)
{
this.MainGrid = MainGrid;
Documents = new ObservableCollection<Document>();
LinkedEmployee empl1 = new LinkedEmployee("1", "Ben");
LinkedEmployee empl2 = new LinkedEmployee("2", "John");
Document doc = new Document("first", "111");
doc.LinkedEmployees.Add(empl1);
doc.LinkedEmployees.Add(empl2);
Documents.Add(doc);
RefreshCommand = new RefreshCommand(Documents, MainGrid);
}
public ObservableCollection<Document> Documents { get; set; }
public ICommand RefreshCommand { get; set; }
}
public sealed class LinkedEmployee : PropertyBase
{
public LinkedEmployee(string id, string name)
{
_id = id;
_name = name;
}
public void Update(string name)
{
Name = name;
}
private string _id;
private string _name;
private bool _status;
public bool Status
{
get { return _status; }
set
{
_status = value;
OnPropertyChanged();
}
}
public string Id
{
get { return _id; }
set
{
_id = value;
OnPropertyChanged();
}
}
public string Name
{
get { return _name; }
set
{
_name = value;
OnPropertyChanged();
}
}
}
public class Document : PropertyBase
{
public Document(string name, string number)
{
_name = name;
_number = number;
LinkedEmployees = new ObservableCollection<LinkedEmployee>();
}
public void Update(string number)
{
Number = number;
}
private string _name;
private string _number;
public virtual string Name
{
get { return _name; }
set
{
_name = value;
OnPropertyChanged();
}
}
public virtual string Number
{
get { return _number; }
set
{
_number = value;
OnPropertyChanged();
}
}
public ObservableCollection<LinkedEmployee> LinkedEmployees { get; set; }
}
public abstract class PropertyBase : INotifyPropertyChanged
{
#region public properties
public event PropertyChangedEventHandler PropertyChanged;
#endregion
#region protected methods
protected void OnPropertyChanged([CallerMemberName]string caller = null)
{
if (PropertyChanged != null)
PropertyChanged.Invoke(this, new PropertyChangedEventArgs(caller));
}
#endregion
}
}
刷新命令.cs
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Media;
namespace ExampleNestedGrid
{
public class RefreshCommand : ICommand
{
private ObservableCollection<Document> Documents;
private System.Windows.Controls.DataGrid MainGrid;
#region public methods
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
#endregion
#region public methods
public RefreshCommand(ObservableCollection<Document> Documents, System.Windows.Controls.DataGrid MainGrid)
{
// TODO: Complete member initialization
this.Documents = Documents;
this.MainGrid = MainGrid;
}
public void Execute(object parameter)
{
Documents.First().LinkedEmployees.First().Status = !Documents.First().LinkedEmployees.First().Status;
ICollectionView view = CollectionViewSource.GetDefaultView(Documents);
view.Filter = (item) => item != null;
MainGrid.ItemsSource = view;
var childGrids = FindVisualChildren<DataGrid>(MainGrid);
foreach (DataGrid childGrid in childGrids)
{
MessageBox.Show(childGrid.Name);
}
}
public bool CanExecute(object parameter)
{
return Documents != null && MainGrid != null;
}
#endregion
private static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
}
}
3) 开始申请。单击第一行。行详细信息应展开。
4) 按第一列对主行进行排序
5) 按第二列对行详细信息进行排序
6) 点击刷新按钮
7) 检查排序指示器是否消失。
最佳答案
您只能获取对 RowDetailsTemplate
中当前可见元素的引用。试试这个:
private void Button_Click(object sender, RoutedEventArgs e)
{
var childGrids = FindVisualChildren<DataGrid>(MainGrid);
foreach (DataGrid childGrid in childGrids)
{
//...
}
}
private static IEnumerable<T> FindVisualChildren<T>(DependencyObject depObj) where T : DependencyObject
{
if (depObj != null)
{
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(depObj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(depObj, i);
if (child != null && child is T)
{
yield return (T)child;
}
foreach (T childOfChild in FindVisualChildren<T>(child))
{
yield return childOfChild;
}
}
}
}
编辑:如果您重置其ItemsSource
,则调用DataGrid
的UpdateLayout()
方法。如果我在父 DataGrid
中选择一行并单击“刷新”按钮,则该命令的 Execute
方法的实现对我有用:
public void Execute(object parameter)
{
Documents.First().LinkedEmployees.First().Status = !Documents.First().LinkedEmployees.First().Status;
ICollectionView view = CollectionViewSource.GetDefaultView(Documents);
view.Filter = (item) => item != null;
MainGrid.ItemsSource = view;
MainGrid.UpdateLayout();
List<DataGrid> childGrids = new List<DataGrid>();
foreach (var item in MainGrid.Items)
{
var container = MainGrid.ItemContainerGenerator.ContainerFromItem(item) as DataGridRow;
if (container != null)
{
childGrids.AddRange(FindVisualChildren<DataGrid>(container));
}
}
}
关于c# - WPF:从 DataGrid.RowDetailsTemplate 获取指定控件的所有列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44762638/
我正在我的 java 作业中使用 GUI,并且我必须指定 JCheckBox 中的其他内容。除了这个小要求,其他的我都完成了。我不太确定如何解决这个问题,我查阅了我的书并尝试在线研究 要求: 一系列复
在各种语言中(我将在这里使用 JavaScript,但我已经在 PHP 和 C++ 中以及可能在其他地方看到过它),似乎有几种构造简单 for 循环的方法。版本 1 如下: var top = doc
有没有一种方法可以使用 CSS 指定每次“小于符号”(在键盘上 M 的右侧)或“大于符号”出现在文本中时,它应该被替换为分别是“小于”或“大于”的实际词? 最佳答案 CSS 不能作用于(不能修改,即)
首先,使用 setspn 命令为用户注册服务主体名称。 setspn -a CS/dummy@abc.com dummyuser setspn -l dummyuser 给出输出为 CS/dummy@
我在指定从 SFSafariViewController 访问时遇到问题,因为它具有与 Safari 浏览器完全相同的用户代理。 我要做的是仅在 webview 内显示图片,如果在普通浏览器上查看,则
我正在尝试用 R 语言在 lavaan 中指定一个奇怪的模型。该模型如下所示: 我的规范尝试如下所示。我发现难以实现的是将观察到的变量的唯一误差固定为唯一项的两个相关性的总和。 例如,项目 y*1,2
我正在构建 API 以将我的 React 应用程序与我的后端服务连接起来,我想使用 typescript 来指定 data 的类型在我的 Axios 请求中。如何在不修改其他字段的情况下更新 Axio
如何为模型指定初始“软”值?该初始模型是解决类似查询的结果,并且该模型很可能具有正确的部分,甚至对于当前查询可能是正确的。 目前,我正在通过增量求解和 hard/soft constraints 对此
我有来自网页的以下代码 https://cwiki.apache.org/confluence/display/KAFKA/0.8.0+Producer+Example 似乎缺少的是如何配置分区数。我
有没有办法在每个查询的基础上在 Neo4jClient 中指定 Cypher 解析器的版本,如 here 所述? 谢谢! 最佳答案 如果您将 Neo4jClient 更新到最新版本(> 1.0.0.6
我有以下代码生成四个图,但它们最终被压扁(见下图)。我该如何解决这个问题? par(mfrow=c(2,2)) curve(.5*exp(-.5*x),from=0,to=10,main="f(x)"
我有一个 ColdFusion 10 服务器。我正在使用 JDBC 驱动程序连接到 db2 数据库。我偶然发现了这个笔记。这个设置在哪里?我还查看了 neo*.xml 文件,但没有看到任何 db 驱动
我想知道是否可以指定验证器的运行顺序。 目前,我编写了一个自定义验证器,检查它是否为 [a-zA-Z0-9]+ 以确保登录验证我们的规则,并编写了一个远程验证器以确保登录可用,但目前远程验证器已启动在
我的应用程序需要至少 40MB 的 RAM,因此早期的 iPhone(例如 3G、第一个 iPod touch 版本)就没有它(它们为我的应用程序提供的最大内存约为 20MB)。有没有正确的方法来禁用
我有一个保存日期(不是当前日期)的 Date 对象,我需要以某种方式指定该日期为 UTC,然后将其转换为“欧洲/巴黎”,即 +1 小时。 public static LocalDateTime toL
我想问你在 Varnish 代码中如何在没有缓存的情况下将请求传递到后端。 我知道我可以做到并且正在发挥作用: if (req.url ~ "(\?|&)(something|somethin
我目前基于模块编译程序(如主程序 foo 依赖于模块 bar )如下: gfortran -c bar.f90 gfortran -o foo.exe foo.f90 bar.o 这在 foo.f90
我正在尝试创建一个依赖于另一个 meteor 包的新 meteor 包。当我尝试 meteor add mypackage 时,出现以下错误。为什么 Meteor 不添加 mypackage 并引入它
我正在制作执行器/ react 器,同时发现这是一个终生的问题。它与 async/Future 无关,可以在没有 async 糖的情况下进行复制。 use std::future::Future; s
我在 cassandra 中有一个表,其数据类型为时间戳。我正在使用 cqlsh 从数据库中获取数据,并希望更改我的时间戳列输出的输出格式。我研究了一下,发现我可以通过更改以下文件来更改时间戳输出格式
我是一名优秀的程序员,十分优秀!