- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
你好,
我被一个问题困住了,我想不出解决办法。
由于我在基础设施和 wpf 方面没有太多经验,所以我首先创建了一个测试项目来尝试如何正确地完成它。
我有一个包含组合框的 xamComboEditor。
当我打开组合框时,我得到了一个带有“状态”表的 xamDataGrid。选择一行后,我需要将所选行的主键写入组合框。
我的问题是,当 RecordActivated()-Event 触发时,我得到了发送者对象,但我不知道如何从中读取我需要的数据。
当我使用 VisualStudio 监视列表工具查看发件人对象时,我可以找到我需要的数据,但我不知道如何获取它的值。
我需要获取发件人对象内的“行”值,该值已经非常隐藏,无法使用监视列表工具找到。搜索了一段时间后,我找到了正确的值。我在那里找到了它:
发件人 -> ActiveRecord -> 数据项 -> 行
测试.xaml.cs:
namespace WpfApplication1
{
public partial class test : Window
{
public test()
{
InitializeComponent();
runFASTWMVDataSetTableAdapters.StaatenTableAdapter staat = new runFASTWMVDataSetTableAdapters.StaatenTableAdapter();
combo.ItemsSource = staat.GetData().DefaultView;
}
//MainGrid2 is the grid which is in my combobox
private void MainGrid2_RecordActivated(object sender, Infragistics.Windows.DataPresenter.Events.RecordActivatedEventArgs e)
{
//combo is my comboBox object
combo.IsDropDownOpen = false;
//guess i need to somehow read the "row" from the sender object right here.
}
}
}
我将只发布 xaml 的部分,这非常重要,因为我有一个很长的 xaml。
测试.xaml:
<igWPF:XamComboEditor x:Name="combo" Margin="1,1,1,219" ComboBoxStyle="{DynamicResource ComboStyle}"
DisplayValueSource="{Binding SelectedItem, RelativeSource={RelativeSource Self}}">
<Grid x:Name="MainGrid" SnapsToDevicePixels="True">
<igWPF:XamDataGrid x:Name="MainGrid2" DataSource="{TemplateBinding ItemsSource}"
RecordActivated="MainGrid2_RecordActivated" GroupByAreaLocation="None" SelectedDataItemsScope="RecordsOnly"/>
</Grid>
</igWPF:XamComboEditor>
经过几个小时的努力和谷歌搜索后,我没有任何想法可以尝试,所以我想我可以向你们寻求帮助。希望我在为帖子格式化代码时没有删除任何东西,它在我的本地项目中确实像预期的那样工作。
如果我的帖子中出现语法错误,也很抱歉,英语不是我的母语。
最佳答案
您问问题已经有一段时间了,但我想回答您的问题,即使您不再使用网格也是如此。也许这个答案会对其他人有所帮助。
我创建了一个示例,它将向您展示:
我的示例包含以下类:
Person.cs
namespace XamDataGridDemo
{
public class Person
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
public override string ToString()
{
return $"{LastName}, {FirstName} ({Age})";
}
}
}
MainWindow.xaml
<Window x:Class="XamDataGridDemo.MainWindow"
x:Name="Demo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ig="http://schemas.infragistics.com/xaml"
xmlns:dp="http://infragistics.com/DataPresenter"
xmlns:editors="http://infragistics.com/Editors"
Title="XamDataGridDemo" Height="350" Width="525"
DataContext="{Binding ElementName=Demo}"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="3*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="3*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- Reference InfragisticsWPF4.v16.1.dll -->
<!-- Reference InfragisticsWPF4.DataPresenter.v16.1.dll -->
<dp:XamDataGrid x:Name="FirstPersonGrid"
Grid.Row="0"
DataSource="{Binding Path=Persons}"
RecordActivated="PersonGrid_OnRecordActivated"
/>
<Separator Grid.Row="1" Margin="3" />
<Grid Grid.Row="2">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- Reference InfragisticsWPF4.Editors.v16.1.dll -->
<editors:XamComboEditor x:Name="Combo"
Grid.Row="0"
ItemsSource="{Binding Path=Persons}"
SelectedItem="{Binding ElementName=SecondPersonGrid, Path=ActiveDataItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
/>
<!-- Reference InfragisticsWPF4.DataPresenter.v16.1.dll -->
<dp:XamDataGrid x:Name="SecondPersonGrid"
Grid.Row="1"
DataSource="{Binding Path=Persons}"
/>
</Grid>
<Separator Grid.Row="3" Margin="3" />
<!-- Reference InfragisticsWPF4.Controls.Editors.XamComboEditor.v16.1.dll -->
<ig:XamMultiColumnComboEditor Grid.Row="4"
ItemsSource="{Binding Path=Persons}"
EmptyText="Select a Person ..."
SelectedValue="{Binding Path=SelectedItem.Id, RelativeSource={RelativeSource Self}}"
SelectionChanged="XamMultiColumnComboEditor_OnSelectionChanged"
/>
</Grid>
</Window>
MainWindow.xaml.cs
namespace XamDataGridDemo
{
using System.Collections.Generic;
using System.Windows;
using Infragistics.Controls.Editors;
using Infragistics.Windows.DataPresenter;
using Infragistics.Windows.DataPresenter.Events;
public partial class MainWindow : Window
{
public MainWindow()
{
this.Persons = new List<Person>
{
new Person { Id = 0, FirstName = "Horst", LastName = "Horstenson", Age = 55 },
new Person { Id = 1, FirstName = "Hilde", LastName = "Wild", Age = 45 },
new Person { Id = 2, FirstName = "Klaus", LastName = "Klausen", Age = 50 }
};
DataContext = this.Persons;
InitializeComponent();
}
public IList<Person> Persons { get; }
private void PersonGrid_OnRecordActivated(object sender, RecordActivatedEventArgs e)
{
var xamDataGrid = (XamDataGrid)sender;
var activePerson = xamDataGrid.ActiveDataItem as Person;
if (activePerson != null)
{
// if you want to do something with the properties
int id = activePerson.Id;
string firstName = activePerson.FirstName;
string lastName = activePerson.LastName;
int age = activePerson.Age;
MessageBox.Show($"You have selected {activePerson}", "Selected Person");
}
// Second Approch -- Your Watchlist
var record = xamDataGrid.ActiveRecord as DataRecord;
activePerson = record?.DataItem as Person;
if (activePerson != null)
{
MessageBox.Show($"You have selected {activePerson}", "Selected Person");
}
}
private void XamMultiColumnComboEditor_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
{
var xamMultiColumnComboEditor = (XamMultiColumnComboEditor)sender;
var activePerson = xamMultiColumnComboEditor.SelectedItem as Person;
if (activePerson == null)
{
return;
}
MessageBox.Show($"You have selected {activePerson}", "Selected Person");
// Have to add reference to InfragisticsWPF4.DataManager.v16.1.dll
if (xamMultiColumnComboEditor.SelectedValue is int)
{
int id = (int)xamMultiColumnComboEditor.SelectedValue;
MessageBox.Show($"You have selected the person with id: {id}", "Selected Value");
}
}
}
}
<强>1。如何从发送者对象中获取特殊值?
正如您在 void PersonGrid_OnRecordActivated(object sender, RecordActivatedEventArgs e)
中所见,我假设发送方是一个 XamDataGrid
并且我检查 ActiveDataItem
是我的 Person
类型的对象。
或者,如果您想遵循您的监视列表方法。您可以使用转换的 sender
并检查 ActiveRecord
是否是我的 Person
类型的 DataRecord
。
现在您可以使用“行”对象做任何您想做的事情。
<强>2。如何将 XamDataGrid 的 ActiveRecord 绑定(bind)到 XamComboEditor 的 SelectedItem?
我有点懒,所以我稍微缩短了第二个示例的内容,并在 XamComboEditor
之外使用了 XamDataGrid
,但它也应该在嵌套的网格,因为我将绑定(bind)与 ElementName 结合使用。
如您所见,我只是将 XamComboEditor
的 SelectenItem 绑定(bind)到 XamDataGrid
的 ActiveDataItem
。
SelectedItem="{Binding ElementName=SecondPersonGrid, Path=ActiveDataItem, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
我还使用 Mode=TwoWay
和 UpdateSourceTrigger=PropertyChanged
将 ActiveDataItem
设置为 SelectedItem
。
<强>3。 ComboBox 在 DataGrid 的嵌套类型中的另一种方法。
正如您已经尝试过的那样 infragistics您应该看一下 XamMultiColumnComboEditor
,顾名思义,这是一个包含您可以定义的列的组合框。您可以使用与 1. 中相同的方法从发件人处获取选定的 Person
。请参阅上面代码中的 void XamMultiColumnComboEditor_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
。为了满足您的需要,为了获得“row-id”,我将 SelectedValue 绑定(bind)到所选 Person
的 Id
属性。
SelectedValue="{Binding Path=SelectedItem.Id, RelativeSource={RelativeSource Self}}"
我使用了 Infragistics v16.1 并且必须将以下引用添加到我的项目中。
如果有什么不清楚或范围很广,请随时要求澄清。
关于c# - 使用 XamDataGrid 并尝试从 RecordActivated() 函数的发送者对象中获取特殊值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40990788/
说真的,你怎么能在不发疯的情况下处理所有这些异常呢?我是不是读了太多关于异常处理的文章或什么?我尝试重构了几次,但每次似乎都以更糟糕的结果告终。也许我应该承认确实会发生异常(exception)情况,
背景 两者 try/rescue和 try/catch是 Elixir 中的错误处理技术。根据 corresponding chapter在介绍指南中。 Errors can be rescued u
每当我尝试在 Raspberry PI 上运行此 python 脚本时,我都会遇到问题: import socket import sys # Create a TCP/IP socket sock
我想知道一些关于 PHP 的 try , catch声明。 让我们考虑以下示例。 abstract class ExceptionA extends Exception {} class Except
我的 laravel v5.4 项目中有两个模型,user 和 admin。 在 config/auth.php 中,我向守卫和提供者添加了管理员,如下所示: 'guards' => [ 'w
try: r = requests.get(url, params={'s': thing}) except requests.ConnectionError, e: print e
我有以下代码。 但是,它并不能捕获所有错误,而我仍然会收到“throw er;//未处理的'错误'事件”。 为什么是这样? app.post('/api/properties/zip/:zip/bed
问题与细节 我正在使用自定义错误处理,遇到的错误之一是“路径中的非法字符”。我有一个自定义函数,旨在通过路径字符串查找此类非法字符,并在找到它们时引发自定义错误。但是我发现,取决于非法字符,Test-
This question already has answers here: How do I catch a numpy warning like it's an exception (not j
我正在使用其他人的代码,但我不熟悉try/catch,因此我举了一个类似的小例子。在第11行上,如果我写了error(''),似乎没有发现错误并增加了索引j。但是,编写error(' ')或error
我在我的一个程序中遇到了这个问题,在这种情况下,尝试/异常(exception)的错误使程序变得更好,以防用户意外输入了他们不应该输入的内容。它仍然给我错误,我为为什么感到困惑。如果对我的问题确实很重
我在尝试TRY ... CATCH块时遇到问题。有人可以解释为什么以下代码无法执行我的sp吗? DECLARE @Result int SET @Result = 0 BEGIN TRY SE
我有一个相当大的 powershell 脚本,其中包含许多(20 多个)执行各种操作的函数。 现在所有代码实际上都没有任何错误处理或重试功能。如果某个特定的任务/功能失败,它就会失败并继续。 我想改进
为什么我尝试时需要导入 inputmismatchException catch(InputMismatchException e){ System.out.println("
我对此感到困惑 - 我为辅助方法编写了一个 try/catch 。它的目的是捕获任何无效输入(任何不是“男性”或“女性”的内容(没有特定情况)。如果输入无效,它将通知用户,然后让他们重试。如果有效,则
我有时会发现自己处于如下场景。尽可能简单地陈述问题 “有时我会创建一段代码,Java 让我将其包含在 try/catch 语句中。我没有使用 catch,所以我将其留空。为什么这是错误的?” boo
我有点困惑为什么当我不使用 Try block 时会出现 Try block 错误。 我在代码块底部附近收到错误通知。如果我不使用 try/catch,有人可以向我解释为什么会发生这种情况吗? 它是否
我已经盯着我的电脑两个小时了,我不知道我做错了什么。谁能帮助我看到光明? package blackjack; import java.util.Random; import java.util.Sc
我想将方法保存在 Enum 中,但 Class.getDeclaredMethod 抛出 NoSuchMethodException,那么我该如何处理呢?我的代码: public enum Car
这个问题已经有答案了: Executing multi-line statements in the one-line command-line (18 个回答) 已关闭 3 年前。 如何使用try.
我是一名优秀的程序员,十分优秀!