gpt4 book ai didi

c# - 将自动化 ID 添加到绑定(bind)的组合框项目

转载 作者:行者123 更新时间:2023-11-30 21:09:16 25 4
gpt4 key购买 nike

我不太熟悉 XAML 或绑定(bind),但我一直在为每个 GUI 元素设置 AutomationID。不幸的是,我找不到在 ComboBox 中的项目上设置 AutomationID 的方法。

这是在 XAML 中声明 ComboBox 的方式。

<ComboBox AutomationProperties.AutomationId="DialogRODB_TypeComboBox"
Height="23"
Margin="80,64,27,0"
VerticalAlignment="Top"
SelectedValue="{Binding Message.Move.Type}"
ItemsSource="{Binding Source={StaticResource MoveType}}" />

在一个单独的类中,这是创建组合框中的项目的地方。

public enum MoveType
{
[StringValue("INBOUND")] Inbound,
[StringValue("OUTBOUND")] Outbound
}

我真的无法提供更多代码,但我可以尝试回答任何问题。

最佳答案

我认为您需要定义一个 ItemTemplate,然后您可以将 Automationid 放入每个元素。例如

<DataTemplate x:Key="PersonDataTemplate" DataType="model:Person">
<TextBlock Text="{Binding Name}">
<AutomationProperties.AutomationId>
<MultiBinding StringFormat="AID_{0}-{1}">
<Binding Path="Name" />
<Binding Path="Id" />
</MultiBinding >
</AutomationProperties.AutomationId>
</TextBlock>
</DataTemplate>

关于c# - 将自动化 ID 添加到绑定(bind)的组合框项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9113527/

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