gpt4 book ai didi

uipath - 将 DataTable 传递到 UiPath WPF Form Creator 事件中

转载 作者:行者123 更新时间:2023-12-02 00:56:02 32 4
gpt4 key购买 nike

我正在使用这个 nuget UiPathTeam.WpfFormCreator.Activities ,通过它我们可以显示一个 xaml 表单,供有人值守的机器人进行用户输入。 我设法正确处理类型(文本、图像、日期...)以填充控件,如文本框、DatePicker 等,点击以下链接 https://github.com/RaduPantelimon/UiPathActivities/blob/master/WpfFormCreator/XamlFormCreator.docx .现在我还需要填充一个传递DataTable 的DataGrid。我已经做了很多,但是停留在我们为DataTable 指定类型的地方。对于字符串,它是“文本”,DateTime 是“值”。到目前为止,我已经尝试过(DataTable、List、Array..)但我收到以下错误。

错误截图:

enter image description here

这是我的xaml

<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Margin="10" Width="1000" Height="1500" >
<DataGrid Name="Table" ItemsSource="{Binding}" AutoGenerateColumns="True" />

<Button Grid.Row="4" Grid.Column="1" Margin="5" HorizontalAlignment="Center" Name="submitButton" Width="100" Height="30" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">Submit</Button>
</Grid>

这是我的返回字典

New Dictionary( Of String, Dictionary( Of String, Object))  From { 
{ "Table", New Dictionary( Of String, Object) From { { "DataTable",InvoiceDT
} } }}

最佳答案

尝试将“DataContext”作为传递DataTable的类型

New Dictionary( Of String, Dictionary( Of String, Object))  From { 
{ "Table", New Dictionary( Of String, Object) From { { "DataContext", InvoiceDT } } }}

关于uipath - 将 DataTable 传递到 UiPath WPF Form Creator 事件中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54237528/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com