gpt4 book ai didi

WPF ComboBox 将 itemssource 绑定(bind)到 MVVM 中的不同数据上下文

转载 作者:行者123 更新时间:2023-12-04 14:15:06 25 4
gpt4 key购买 nike

我有一个用户控件,它的数据上下文设置为一个名为 的 View 模型EmployeeList_VM .然后,我在该用户控件中有一个 ContentControl,它的 datacontect 设置为 View 模型的公共(public)属性 ( EmployeeSelection )。 ContentControl 的数据上下文与同一用户控件中列表框的选定项绑定(bind)相同。

我想在 ContentControl 中有一个组合框(一个名为 EmployeeStatus 的 observblecollection )将其选定项绑定(bind)到 的属性员工选择 ContentControl 的数据上下文。我希望组合框的 itemssource 绑定(bind)到公共(public)属性 员工状态 “父” View 模型的 EmployeeList_VM .

我可以获取显示在组合框中的员工状态列表。我无法将其绑定(bind)到 的 idStatus 属性员工选择 .

这是我到目前为止所拥有的(为了便于阅读,删除了一些代码):

<UserControl x:Class="FTC.View.EmployeeListView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:FTC_Application"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="http://www.galasoft.ch/mvvmlight"
mc:Ignorable="d"
DataContext="{Binding EmployeeList_VM, Source={StaticResource Locator}}"
d:DesignHeight="900" d:DesignWidth="1000">

<Expander x:Name="DetailExpander" Grid.Column="2" Header="employee detail" Style="{DynamicResource ExpanderStyle_FTC}" IsExpanded="True" Padding="8,0,0,10" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" >
<Button Content="" Style="{DynamicResource ButtonSave}" Command="{Binding SaveCommand}" ToolTip="Save Changes" Margin="0,0,10,10"/>
<Button Content="" Style="{DynamicResource ButtonUndo}" Command="{Binding UndoCommand}" ToolTip="Undo Changes" Margin="0,0,10,10"/>
</StackPanel>
<ScrollViewer Grid.Column="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<ContentControl DataContext="{Binding Path=EmployeeSelection, Mode=TwoWay}" >
<!-- FTC SETTINGS GRID CONTENT-->
<Grid Grid.ColumnSpan="6" Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>

<TextBlock x:Name="SettingsHeading" Text="FTC Settings" Style="{StaticResource FTC_DetailHeading}" Grid.ColumnSpan="5"/>

<TextBlock Text="Status" Style="{StaticResource FTC_DetailLabelSub}" Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="1"/>
<ComboBox Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="2"
Margin="5,5,16,5" Height="37"
ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},Path=DataContext.EmployeeStatus}"
SelectedItem="{Binding idStatus, Mode=TwoWay}"
SelectedValuePath="idStatus"
DisplayMemberPath="chrCode" FontSize="18"/>

</Grid>
</ContentControl>
</ScrollViewer>
</Grid>
</Expander>
</UserControl>

我什至为组合框的选定项尝试了以下更改(我将 ContentControl 命名为 DetailControl):
SelectedItem="{Binding ElementName=DetailControl, Path=DataContext.idStatus}"

有人可以帮我正确连接选定的项目绑定(bind)吗?组合框显示所有正确的项目,但它们不绑定(bind)到 EmployeeSelection.idStatus。

提前致谢。

最佳答案

所以这对我有用,希望它可以帮助别人

<ComboBox Name="cbStatus" Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="2"
Style="{StaticResource FTC_DetailComboBox}"
ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},Path=DataContext.EmployeeStatus}"
SelectedItem="{Binding ElementName=DetailControl, Path=DataContext.employee_status}"
SelectedValuePath="idStatus"
SelectedValue="{Binding idStatus, Mode=TwoWay, ValidatesOnDataErrors=True}"
DisplayMemberPath="chrCode"/>

关于WPF ComboBox 将 itemssource 绑定(bind)到 MVVM 中的不同数据上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14765046/

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