gpt4 book ai didi

wpf - Caliburn Micro Message.attach不考虑datacontext的变化

转载 作者:行者123 更新时间:2023-12-02 17:26:10 24 4
gpt4 key购买 nike

这是一个简化的例子。我有一个包含“浏览到文件夹”功能的用户控件,使用文本框和按钮。单击该按钮将打开浏览对话框,并基本上填写文本框。

<UserControl x:Class="MyUserControl"
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:cal="http://www.caliburnproject.org"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>

<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>

<!-- Folder -->
<TextBlock>Path</TextBlock>
<DockPanel LastChildFill="True" Grid.Column="1">
<Button DockPanel.Dock="Right" cal:Message.Attach="[Event Click] = [Action BrowseHotFolder()]" Content="..." HorizontalAlignment="Left" Width="25" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Margin="0,0,5,0"/>
<TextBox Text="{Binding HotFolderPath, UpdateSourceTrigger=PropertyChanged, ValidatesOnNotifyDataErrors=True}" />
</DockPanel>
</Grid>

我有一个包含许多对象的列表框。所选对象将作为数据上下文输入到此用户控件中。

<Window>
...
<Listbox ItemsSource="{Binding Items, Mode=OneWay}" SelectedItem="{Binding SelectedItem}">
...
<view:MyUserControl DataContext="{Binding SelectedItem}" />
</Window>

现在,假设我的列表框中有两个项目,我选择了第一个。我在 MyUserControl 的文本框中填写“foo”。然后我选择第二项,并填写“栏”。数据绑定(bind)工作正常,并且两个项目都设置了正确的值。如果我然后单击第一个上的浏览按钮并选择一个文件夹,它将第一个项目的文本框更改为所选路径。但是,如果我选择第二个项目并浏览到一个文件夹,它也会更改第一个项目的文本框。

我的猜测是消息附加语法没有调用正确项目的浏览操作。它忽略数据上下文(当前选择的项目),只使用第一个。

我该怎么办?

最佳答案

我认为你的猜测是正确的;用于 Message.Attach 的目标是第一个数据上下文绑定(bind),并且在用户选择后更改上下文时不会更新。

我们在内容控件中看到了用户控件切换的类似问题 - 解决方法是在按钮上指定 cal:Action.TargetWithoutContext="{Binding}"

Rob Eisenberg 在这里提到了这个问题: https://caliburnmicro.codeplex.com/discussions/257005

关于wpf - Caliburn Micro Message.attach不考虑datacontext的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38636396/

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